Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 306 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 306 Bytes

wxWEBPHandler

wxWidgets wxImage handler for reading WebP image files.

Animations will only have their first frame shown.

Usage

class SampleApp : public wxApp
{
    public:
        virtual bool OnInit() {
            wxImage::AddHandler(new wxWEBPHandler);
        }
};