An open API service indexing awesome lists of open source software.

https://github.com/hoehermann/wxwebphandler

wxWidgets wxImage handler for reading WebP image files
https://github.com/hoehermann/wxwebphandler

webp wxwidgets

Last synced: about 1 year ago
JSON representation

wxWidgets wxImage handler for reading WebP image files

Awesome Lists containing this project

README

          

# 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);
}
};