1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00
Files
gimp/plug-ins/file-tiff/file-tiff.h
Michael Natterer 9054ab5dc5 plug-ins: port file-tiff-save to GimpProcedureConfig
Implement the GUI using prop widgets and remove the glade file.
Change loading to attach the right parasite so the save procedure
finds the fake "last values".
2020-06-08 20:42:36 +02:00

26 lines
516 B
C

/* tiff for GIMP
* -Peter Mattis
*/
#ifndef __FILE_TIFF_H__
#define __FILE_TIFF_H__
typedef enum
{
GIMP_COMPRESSION_NONE,
GIMP_COMPRESSION_LZW,
GIMP_COMPRESSION_PACKBITS,
GIMP_COMPRESSION_ADOBE_DEFLATE,
GIMP_COMPRESSION_JPEG,
GIMP_COMPRESSION_CCITTFAX3,
GIMP_COMPRESSION_CCITTFAX4
} GimpCompression;
gint gimp_compression_to_tiff_compression (GimpCompression compression);
GimpCompression tiff_compression_to_gimp_compression (gint compression);
#endif /* __FILE_TIFF_H__ */