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
- Host: GitHub
- URL: https://github.com/hoehermann/wxwebphandler
- Owner: hoehermann
- License: gpl-3.0
- Created: 2021-05-15T22:04:21.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-16T00:09:20.000Z (over 2 years ago)
- Last Synced: 2025-05-12T13:12:05.238Z (about 1 year ago)
- Topics: webp, wxwidgets
- Language: C
- Homepage:
- Size: 51.8 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
}
};