488 lines
15 KiB
C
488 lines
15 KiB
C
/* Base type for supported image foreigns. Subclass this to add a new
|
|
* foreign.
|
|
*/
|
|
|
|
/*
|
|
|
|
This foreign is part of VIPS.
|
|
|
|
VIPS is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301 USA
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
These foreigns are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
|
|
|
|
*/
|
|
|
|
#ifndef VIPS_FOREIGN_H
|
|
#define VIPS_FOREIGN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /*__cplusplus*/
|
|
|
|
#define VIPS_TYPE_FOREIGN (vips_foreign_get_type())
|
|
#define VIPS_FOREIGN( obj ) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST( (obj), \
|
|
VIPS_TYPE_FOREIGN, VipsForeign ))
|
|
#define VIPS_FOREIGN_CLASS( klass ) \
|
|
(G_TYPE_CHECK_CLASS_CAST( (klass), \
|
|
VIPS_TYPE_FOREIGN, VipsForeignClass))
|
|
#define VIPS_IS_FOREIGN( obj ) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE( (obj), VIPS_TYPE_FOREIGN ))
|
|
#define VIPS_IS_FOREIGN_CLASS( klass ) \
|
|
(G_TYPE_CHECK_CLASS_TYPE( (klass), VIPS_TYPE_FOREIGN ))
|
|
#define VIPS_FOREIGN_GET_CLASS( obj ) \
|
|
(G_TYPE_INSTANCE_GET_CLASS( (obj), \
|
|
VIPS_TYPE_FOREIGN, VipsForeignClass ))
|
|
|
|
typedef struct _VipsForeign {
|
|
VipsOperation parent_object;
|
|
|
|
/*< public >*/
|
|
|
|
} VipsForeign;
|
|
|
|
typedef struct _VipsForeignClass {
|
|
VipsOperationClass parent_class;
|
|
|
|
/*< public >*/
|
|
|
|
/* Loop over formats in this order, default 0. We need this because
|
|
* some formats can be read by several loaders (eg. tiff can be read
|
|
* by the libMagick loader as well as by the tiff loader), and we want
|
|
* to make sure the better loader comes first.
|
|
*/
|
|
int priority;
|
|
|
|
/* Null-terminated list of recommended suffixes, eg. ".tif", ".tiff".
|
|
* This can be used by both load and save, so it's in the base class.
|
|
*/
|
|
const char **suffs;
|
|
|
|
} VipsForeignClass;
|
|
|
|
GType vips_foreign_get_type( void );
|
|
|
|
/* Map over and find formats. This uses type introspection to loop over
|
|
* subclasses of VipsForeign.
|
|
*/
|
|
void *vips_foreign_map( const char *base,
|
|
VipsSListMap2Fn fn, void *a, void *b );
|
|
|
|
/* Image file load properties.
|
|
*/
|
|
typedef enum /*< flags >*/ {
|
|
VIPS_FOREIGN_NONE = 0, /* No flags set */
|
|
VIPS_FOREIGN_PARTIAL = 1, /* Lazy read OK (eg. tiled tiff) */
|
|
VIPS_FOREIGN_SEQUENTIAL = 2, /* Top-to-bottom lazy read OK */
|
|
VIPS_FOREIGN_BIGENDIAN = 4, /* Most-significant byte first */
|
|
VIPS_FOREIGN_ALL = 7 /* All flags set */
|
|
} VipsForeignFlags;
|
|
|
|
#define VIPS_TYPE_FOREIGN_LOAD (vips_foreign_load_get_type())
|
|
#define VIPS_FOREIGN_LOAD( obj ) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST( (obj), \
|
|
VIPS_TYPE_FOREIGN_LOAD, VipsForeignLoad ))
|
|
#define VIPS_FOREIGN_LOAD_CLASS( klass ) \
|
|
(G_TYPE_CHECK_CLASS_CAST( (klass), \
|
|
VIPS_TYPE_FOREIGN_LOAD, VipsForeignLoadClass))
|
|
#define VIPS_IS_FOREIGN_LOAD( obj ) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE( (obj), VIPS_TYPE_FOREIGN_LOAD ))
|
|
#define VIPS_IS_FOREIGN_LOAD_CLASS( klass ) \
|
|
(G_TYPE_CHECK_CLASS_TYPE( (klass), VIPS_TYPE_FOREIGN_LOAD ))
|
|
#define VIPS_FOREIGN_LOAD_GET_CLASS( obj ) \
|
|
(G_TYPE_INSTANCE_GET_CLASS( (obj), \
|
|
VIPS_TYPE_FOREIGN_LOAD, VipsForeignLoadClass ))
|
|
|
|
typedef struct _VipsForeignLoad {
|
|
VipsForeign parent_object;
|
|
/*< private >*/
|
|
|
|
/* Open to disc (default is to open to memory).
|
|
*/
|
|
gboolean disc;
|
|
|
|
/* Type of access upstream wants and the loader must supply.
|
|
*/
|
|
VipsAccess access;
|
|
|
|
/* Flags for this load operation.
|
|
*/
|
|
VipsForeignFlags flags;
|
|
|
|
/* Deprecated and unused, just here for compat.
|
|
*/
|
|
gboolean sequential;
|
|
|
|
/*< public >*/
|
|
|
|
/* The image we generate. This must be set by ->header().
|
|
*/
|
|
VipsImage *out;
|
|
|
|
/* The behind-the-scenes real image we decompress to. This can be a
|
|
* disc foreign or a memory buffer. This must be set by ->load().
|
|
*/
|
|
VipsImage *real;
|
|
|
|
/* Set this to tag the operation as nocache.
|
|
*/
|
|
gboolean nocache;
|
|
} VipsForeignLoad;
|
|
|
|
typedef struct _VipsForeignLoadClass {
|
|
VipsForeignClass parent_class;
|
|
/*< public >*/
|
|
|
|
/* Is a file in this format.
|
|
*
|
|
* This function should return %TRUE if the file contains an image of
|
|
* this type. If you don't define this function, #VipsForeignLoad
|
|
* will use @suffs instead.
|
|
*/
|
|
gboolean (*is_a)( const char * );
|
|
|
|
/* Get the flags from a filename.
|
|
*
|
|
* This function should examine the file and return a set
|
|
* of flags. If you don't define it, vips will default to 0 (no flags
|
|
* set).
|
|
*
|
|
* This operation is necessary for vips7 compatibility.
|
|
*/
|
|
VipsForeignFlags (*get_flags_filename)( const char * );
|
|
|
|
/* Get the flags for this load operation. Images can be loaded from
|
|
* (for example) memory areas rather than files, so you can't just use
|
|
* @get_flags_filename().
|
|
*/
|
|
VipsForeignFlags (*get_flags)( VipsForeignLoad * );
|
|
|
|
/* Do the minimum read we can.
|
|
*
|
|
* Set the header fields in @out from @filename. If you can read the
|
|
* whole image as well with no performance cost (as with vipsload),
|
|
* or if your loader does not support reading only the header, read
|
|
* the entire image in this method and leave @load() NULL.
|
|
*
|
|
* @header() needs to set the dhint on the image .. otherwise you get
|
|
* the default SMALLTILE.
|
|
*
|
|
* Return 0 for success, -1 for error, setting
|
|
* vips_error().
|
|
*/
|
|
int (*header)( VipsForeignLoad * );
|
|
|
|
/* Read the whole image into @real. The pixels will get copied to @out
|
|
* later.
|
|
*
|
|
* You can omit this method if you define a @header() method which
|
|
* loads the whole file.
|
|
*
|
|
* Return 0 for success, -1 for error, setting
|
|
* vips_error().
|
|
*/
|
|
int (*load)( VipsForeignLoad * );
|
|
} VipsForeignLoadClass;
|
|
|
|
GType vips_foreign_load_get_type( void );
|
|
|
|
const char *vips_foreign_find_load( const char *filename );
|
|
const char *vips_foreign_find_load_options( const char *filename );
|
|
|
|
VipsForeignFlags vips_foreign_flags( const char *loader, const char *filename );
|
|
gboolean vips_foreign_is_a( const char *loader, const char *filename );
|
|
|
|
#define VIPS_TYPE_FOREIGN_SAVE (vips_foreign_save_get_type())
|
|
#define VIPS_FOREIGN_SAVE( obj ) \
|
|
(G_TYPE_CHECK_INSTANCE_CAST( (obj), \
|
|
VIPS_TYPE_FOREIGN_SAVE, VipsForeignSave ))
|
|
#define VIPS_FOREIGN_SAVE_CLASS( klass ) \
|
|
(G_TYPE_CHECK_CLASS_CAST( (klass), \
|
|
VIPS_TYPE_FOREIGN_SAVE, VipsForeignSaveClass))
|
|
#define VIPS_IS_FOREIGN_SAVE( obj ) \
|
|
(G_TYPE_CHECK_INSTANCE_TYPE( (obj), VIPS_TYPE_FOREIGN_SAVE ))
|
|
#define VIPS_IS_FOREIGN_SAVE_CLASS( klass ) \
|
|
(G_TYPE_CHECK_CLASS_TYPE( (klass), VIPS_TYPE_FOREIGN_SAVE ))
|
|
#define VIPS_FOREIGN_SAVE_GET_CLASS( obj ) \
|
|
(G_TYPE_INSTANCE_GET_CLASS( (obj), \
|
|
VIPS_TYPE_FOREIGN_SAVE, VipsForeignSaveClass ))
|
|
|
|
/**
|
|
* VipsSaveable:
|
|
* @VIPS_SAVEABLE_MONO: 1 band (eg. CSV)
|
|
* @VIPS_SAVEABLE_RGB: 1 or 3 bands (eg. PPM)
|
|
* @VIPS_SAVEABLE_RGBA: 1, 2, 3 or 4 bands (eg. PNG)
|
|
* @VIPS_SAVEABLE_RGB_CMYK: 1, 3 or 4 bands (eg. JPEG)
|
|
* @VIPS_SAVEABLE_ANY: any number of bands (eg. TIFF)
|
|
*
|
|
* See also: #VipsForeignSave.
|
|
*/
|
|
typedef enum {
|
|
VIPS_SAVEABLE_MONO,
|
|
VIPS_SAVEABLE_RGB,
|
|
VIPS_SAVEABLE_RGBA,
|
|
VIPS_SAVEABLE_RGB_CMYK,
|
|
VIPS_SAVEABLE_ANY,
|
|
VIPS_SAVEABLE_LAST
|
|
} VipsSaveable;
|
|
|
|
typedef struct _VipsForeignSave {
|
|
VipsForeign parent_object;
|
|
|
|
/*< public >*/
|
|
|
|
/* The image we are to save, as supplied by our caller.
|
|
*/
|
|
VipsImage *in;
|
|
|
|
/* @in converted to a saveable format (eg. 8-bit RGB) according to the
|
|
* instructions you give in the class fields below.
|
|
*
|
|
* This is the image you should actually write to the output.
|
|
*/
|
|
VipsImage *ready;
|
|
|
|
} VipsForeignSave;
|
|
|
|
typedef struct _VipsForeignSaveClass {
|
|
VipsForeignClass parent_class;
|
|
|
|
/*< public >*/
|
|
|
|
/* How this format treats bands.
|
|
*
|
|
* @saveable describes the bands that your saver can handle. For
|
|
* example, PPM images can have 1 or 3 bands (mono or RGB), so it
|
|
* uses #VIPS_SAVEABLE_RGB.
|
|
*/
|
|
VipsSaveable saveable;
|
|
|
|
/* How this format treats band formats.
|
|
*
|
|
* @format_table describes the band formats that your saver can
|
|
* handle. For each of the 10 #VipsBandFormat values, the array
|
|
* should give the format your saver will accept.
|
|
*/
|
|
VipsBandFormat *format_table;
|
|
|
|
/* The set of coding types this format can save. For example, jpeg can
|
|
* only save NONE, so has NONE TRUE and RAD and LABQ FALSE.
|
|
*
|
|
* Default NONE TRUE, RAD and LABQ FALSE.
|
|
*/
|
|
gboolean coding[VIPS_CODING_LAST];
|
|
} VipsForeignSaveClass;
|
|
|
|
GType vips_foreign_save_get_type( void );
|
|
|
|
const char *vips_foreign_find_save( const char *filename );
|
|
const char *vips_foreign_find_save_options( const char *filename );
|
|
|
|
/* Read/write an image convenience functions.
|
|
*/
|
|
int vips_foreign_load( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_foreign_save( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_foreign_load_options( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_foreign_save_options( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_openslideload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_jpegload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_jpegload_buffer( void *buf, size_t len, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_jpegsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
int vips_jpegsave_buffer( VipsImage *in, void **buf, size_t *len, ... )
|
|
__attribute__((sentinel));
|
|
int vips_jpegsave_mime( VipsImage *in, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_webpload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_webpload_buffer( void *buf, size_t len, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_webpsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
int vips_webpsave_buffer( VipsImage *in, void **buf, size_t *len, ... )
|
|
__attribute__((sentinel));
|
|
int vips_webpsave_mime( VipsImage *in, ... )
|
|
__attribute__((sentinel));
|
|
|
|
/**
|
|
* VipsForeignTiffCompression:
|
|
* @VIPS_FOREIGN_TIFF_COMPRESSION_NONE: no compression
|
|
* @VIPS_FOREIGN_TIFF_COMPRESSION_JPEG: jpeg compression
|
|
* @VIPS_FOREIGN_TIFF_COMPRESSION_DEFLATE: deflate (zip) compression
|
|
* @VIPS_FOREIGN_TIFF_COMPRESSION_PACKBITS: packbits compression
|
|
* @VIPS_FOREIGN_TIFF_COMPRESSION_CCITTFAX4: fax4 compression
|
|
* @VIPS_FOREIGN_TIFF_COMPRESSION_LZW: LZW compression
|
|
*
|
|
* The compression types supported by the tiff writer.
|
|
*
|
|
* Use @Q to set the jpeg compression level, default 75.
|
|
*
|
|
* Use @prediction to set the lzw or deflate prediction, default none.
|
|
*/
|
|
typedef enum {
|
|
VIPS_FOREIGN_TIFF_COMPRESSION_NONE,
|
|
VIPS_FOREIGN_TIFF_COMPRESSION_JPEG,
|
|
VIPS_FOREIGN_TIFF_COMPRESSION_DEFLATE,
|
|
VIPS_FOREIGN_TIFF_COMPRESSION_PACKBITS,
|
|
VIPS_FOREIGN_TIFF_COMPRESSION_CCITTFAX4,
|
|
VIPS_FOREIGN_TIFF_COMPRESSION_LZW,
|
|
VIPS_FOREIGN_TIFF_COMPRESSION_LAST
|
|
} VipsForeignTiffCompression;
|
|
|
|
/**
|
|
* VipsForeignTiffPredictor:
|
|
* @VIPS_FOREIGN_TIFF_PREDICTOR_NONE: no prediction
|
|
* @VIPS_FOREIGN_TIFF_PREDICTOR_HORIZONTAL: horizontal differencing
|
|
* @VIPS_FOREIGN_TIFF_PREDICTOR_FLOAT: float predictor
|
|
*
|
|
* The predictor can help deflate and lzw compression. The values are fixed by
|
|
* the tiff library.
|
|
*/
|
|
typedef enum {
|
|
VIPS_FOREIGN_TIFF_PREDICTOR_NONE = 1,
|
|
VIPS_FOREIGN_TIFF_PREDICTOR_HORIZONTAL = 2,
|
|
VIPS_FOREIGN_TIFF_PREDICTOR_FLOAT = 3,
|
|
VIPS_FOREIGN_TIFF_PREDICTOR_LAST
|
|
} VipsForeignTiffPredictor;
|
|
|
|
/**
|
|
* VipsForeignTiffResunit:
|
|
* @VIPS_FOREIGN_TIFF_RESUNIT_CM: use centimeters
|
|
* @VIPS_FOREIGN_TIFF_RESUNIT_INCH: use inches
|
|
*
|
|
* Use inches or centimeters as the resolution unit for a tiff file.
|
|
*/
|
|
typedef enum {
|
|
VIPS_FOREIGN_TIFF_RESUNIT_CM,
|
|
VIPS_FOREIGN_TIFF_RESUNIT_INCH,
|
|
VIPS_FOREIGN_TIFF_RESUNIT_LAST
|
|
} VipsForeignTiffResunit;
|
|
|
|
int vips_tiffload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_tiffsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_openexrload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_fitsload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_fitssave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_analyzeload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_rawload( const char *filename, VipsImage **out,
|
|
int width, int height, int bands, ... )
|
|
__attribute__((sentinel));
|
|
int vips_rawsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
int vips_rawsave_fd( VipsImage *in, int fd, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_csvload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_csvsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_matrixload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_matrixsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_magickload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_pngload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_pngload_buffer( void *buf, size_t len, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_pngsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
int vips_pngsave_buffer( VipsImage *in, void **buf, size_t *len, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_ppmload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_ppmsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_matload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
|
|
int vips_radload( const char *filename, VipsImage **out, ... )
|
|
__attribute__((sentinel));
|
|
int vips_radsave( VipsImage *in, const char *filename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
/**
|
|
* VipsForeignDzLayout:
|
|
* @VIPS_FOREIGN_DZ_LAYOUT_DZ: use DeepZoom directory layout
|
|
* @VIPS_FOREIGN_DZ_LAYOUT_ZOOMIFY: use Zoomify directory layout
|
|
* @VIPS_FOREIGN_DZ_LAYOUT_GOOGLE: use Google maps directory layout
|
|
*
|
|
* What directory layout and metadata standard to use.
|
|
*/
|
|
typedef enum {
|
|
VIPS_FOREIGN_DZ_LAYOUT_DZ,
|
|
VIPS_FOREIGN_DZ_LAYOUT_ZOOMIFY,
|
|
VIPS_FOREIGN_DZ_LAYOUT_GOOGLE,
|
|
VIPS_FOREIGN_DZ_LAYOUT_LAST
|
|
} VipsForeignDzLayout;
|
|
|
|
/**
|
|
* VipsForeignDzDepth:
|
|
* @VIPS_FOREIGN_DZ_DEPTH_1PIXEL: create layers down to 1x1 pixel
|
|
* @VIPS_FOREIGN_DZ_DEPTH_1TILE: create layers down to 1x1 tile
|
|
* @VIPS_FOREIGN_DZ_DEPTH_1: only create a single layer
|
|
*
|
|
* How many pyramid layers to create.
|
|
*/
|
|
typedef enum {
|
|
VIPS_FOREIGN_DZ_DEPTH_1PIXEL,
|
|
VIPS_FOREIGN_DZ_DEPTH_1TILE,
|
|
VIPS_FOREIGN_DZ_DEPTH_1,
|
|
VIPS_FOREIGN_DZ_DEPTH_LAST
|
|
} VipsForeignDzDepth;
|
|
|
|
int vips_dzsave( VipsImage *in, const char *basename, ... )
|
|
__attribute__((sentinel));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /*__cplusplus*/
|
|
|
|
#endif /*VIPS_FOREIGN_H*/
|