diff options
author | Alex Kent Hajnal <[email protected]> | 2024-05-17 18:16:23 -0400 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2024-05-21 19:17:18 +0200 |
commit | 8414af176d732dfb8a2f93809f4361295bbfbdcb (patch) | |
tree | 1f0d1181b66195dfdc2c20b07663184eb7c0dd0c /kimgio/webp.h | |
parent | b74ce5928ca980e5b5a1e611404b32c22b174934 (diff) | |
download | tdelibs-8414af176d732dfb8a2f93809f4361295bbfbdcb.tar.gz tdelibs-8414af176d732dfb8a2f93809f4361295bbfbdcb.zip |
Adds WebP read support to kimgio
Signed-off-by: Alex Kent Hajnal <[email protected]>
(cherry picked from commit 347a546d9dfb3210bcf907c3c622d6843d2ae9ce)
Diffstat (limited to 'kimgio/webp.h')
-rw-r--r-- | kimgio/webp.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/kimgio/webp.h b/kimgio/webp.h new file mode 100644 index 000000000..6fc576c98 --- /dev/null +++ b/kimgio/webp.h @@ -0,0 +1,17 @@ +// 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 + |