From 347a546d9dfb3210bcf907c3c622d6843d2ae9ce Mon Sep 17 00:00:00 2001 From: Alex Kent Hajnal Date: Fri, 17 May 2024 18:16:23 -0400 Subject: Adds WebP read support to kimgio Signed-off-by: Alex Kent Hajnal --- kimgio/webp.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 kimgio/webp.h (limited to 'kimgio/webp.h') 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 + -- cgit v1.2.1