You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
350 B
18 lines
350 B
6 months ago
|
// WebP read support
|
||
|
// © 2024 Alexander Hajnal
|
||
|
// Based on jp2.h
|
||
|
//
|
||
|
// This library is distributed under the conditions of the GNU LGPL.
|
||
|
#ifndef KIMG_WEBP_H
|
||
|
#define KIMG_WEBP_H
|
||
|
|
||
|
class TQImageIO;
|
||
|
|
||
|
extern "C" {
|
||
|
void kimgio_webp_read( TQImageIO* io );
|
||
|
// void kimgio_webp_write( TQImageIO* io ); // Not currently supported
|
||
|
} // extern "C"
|
||
|
|
||
|
#endif
|
||
|
|