2416 lines
57 KiB
C
2416 lines
57 KiB
C
/* vips image class
|
|
*
|
|
* 4/2/11
|
|
* - hacked up from various places
|
|
*/
|
|
|
|
/*
|
|
|
|
This file 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
|
|
|
|
*/
|
|
|
|
/*
|
|
#define VIPS_DEBUG
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif /*HAVE_CONFIG_H*/
|
|
#include <vips/intl.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif /*HAVE_UNISTD_H*/
|
|
#include <ctype.h>
|
|
|
|
#include <vips/vips.h>
|
|
#include <vips/internal.h>
|
|
#include <vips/debug.h>
|
|
|
|
#ifdef WITH_DMALLOC
|
|
#include <dmalloc.h>
|
|
#endif /*WITH_DMALLOC*/
|
|
|
|
/**
|
|
* SECTION: image
|
|
* @short_description: the VIPS image class
|
|
* @stability: Stable
|
|
* @see_also: <link linkend="libvips-region">region</link>
|
|
* @include: vips/vips.h
|
|
*
|
|
* The image class and associated types and macros.
|
|
*
|
|
* vips_image_wio_input() and friends indicate the image IO style you
|
|
* intend to use, transforming the underlying #VipsImage structure if
|
|
* necessary.
|
|
*/
|
|
|
|
/**
|
|
* VIPS_MAGIC_INTEL:
|
|
*
|
|
* The first four bytes of a VIPS file in Intel byte ordering.
|
|
*/
|
|
|
|
/**
|
|
* VIPS_MAGIC_SPARC:
|
|
*
|
|
* The first four bytes of a VIPS file in SPARC byte ordering.
|
|
*/
|
|
|
|
/**
|
|
* VipsDemandStyle:
|
|
* @VIPS_DEMAND_STYLE_SMALLTILE: demand in small (typically 64x64 pixel) tiles
|
|
* @VIPS_DEMAND_STYLE_FATSTRIP: demand in fat (typically 10 pixel high) strips
|
|
* @VIPS_DEMAND_STYLE_THINSTRIP: demand in thin (typically 1 pixel high) strips
|
|
* @VIPS_DEMAND_STYLE_ANY: demand geometry does not matter
|
|
*
|
|
* See vips_demand_hint(). Operations can hint to the VIPS image IO system about
|
|
* the kind of demand geometry they prefer.
|
|
*
|
|
* These demand styles are given below in order of increasing
|
|
* restrictiveness. When demanding output from a pipeline,
|
|
* vips_image_generate()
|
|
* will use the most restrictive of the styles requested by the operations
|
|
* in the pipeline.
|
|
*
|
|
* VIPS_DEMAND_STYLE_THINSTRIP --- This operation would like to output strips
|
|
* the width of the image and a few pels high. This is option suitable for
|
|
* point-to-point operations, such as those in the arithmetic package.
|
|
*
|
|
* This option is only efficient for cases where each output pel depends
|
|
* upon the pel in the corresponding position in the input image.
|
|
*
|
|
* VIPS_DEMAND_STYLE_FATSTRIP --- This operation would like to output strips
|
|
* the width of the image and as high as possible. This option is suitable
|
|
* for area operations which do not violently transform coordinates, such
|
|
* as im_conv().
|
|
*
|
|
* VIPS_DEMAND_STYLE_SMALLTILE --- This is the most general demand format.
|
|
* Output is demanded in small (around 100x100 pel) sections. This style works
|
|
* reasonably efficiently, even for bizzare operations like 45 degree rotate.
|
|
*
|
|
* VIPS_DEMAND_STYLE_ANY --- This image is not being demand-read from a disc
|
|
* file (even indirectly) so any demand style is OK. It's used for things like
|
|
* im_black() where the pixels are calculated.
|
|
*
|
|
* See also: vips_demand_hint().
|
|
*/
|
|
|
|
/**
|
|
* VipsInterpretation:
|
|
* @VIPS_TYPE_MULTIBAND: generic many-band image
|
|
* @VIPS_TYPE_B_W: some kind of single-band image
|
|
* @VIPS_TYPE_HISTOGRAM: a 1D image such as a histogram or lookup table
|
|
* @VIPS_TYPE_FOURIER: image is in fourier space
|
|
* @VIPS_TYPE_XYZ: the first three bands are colours in CIE XYZ colourspace
|
|
* @VIPS_TYPE_LAB: pixels are in CIE Lab space
|
|
* @VIPS_TYPE_CMYK: the first four bands are in CMYK space
|
|
* @VIPS_TYPE_LABQ: implies #VIPS_CODING_LABQ
|
|
* @VIPS_TYPE_RGB: generic RGB space
|
|
* @VIPS_TYPE_UCS: a uniform colourspace based on CMC
|
|
* @VIPS_TYPE_LCH: pixels are in CIE LCh space
|
|
* @VIPS_TYPE_LABS: pixels are CIE LAB coded as three signed 16-bit values
|
|
* @VIPS_TYPE_sRGB: pixels are sRGB
|
|
* @VIPS_TYPE_YXY: pixels are CIE Yxy
|
|
* @VIPS_TYPE_RGB16: generic 16-bit RGB
|
|
* @VIPS_TYPE_GREY16: generic 16-bit mono
|
|
*
|
|
* How the values in an image should be interpreted. For example, a
|
|
* three-band float image of type #VIPS_TYPE_LAB should have its pixels
|
|
* interpreted as coordinates in CIE Lab space.
|
|
*
|
|
* These values are set by operations as hints to user-interfaces built on top
|
|
* of VIPS to help them show images to the user in a meaningful way.
|
|
* Operations do not use these values to decide their action.
|
|
*/
|
|
|
|
/**
|
|
* VipsBandFormat:
|
|
* @VIPS_FORMAT_NOTSET: invalid setting
|
|
* @VIPS_FORMAT_UCHAR: unsigned char format
|
|
* @VIPS_FORMAT_CHAR: char format
|
|
* @VIPS_FORMAT_USHORT: unsigned short format
|
|
* @VIPS_FORMAT_SHORT: short format
|
|
* @VIPS_FORMAT_UINT: unsigned int format
|
|
* @VIPS_FORMAT_INT: int format
|
|
* @VIPS_FORMAT_FLOAT: float format
|
|
* @VIPS_FORMAT_COMPLEX: complex (two floats) format
|
|
* @VIPS_FORMAT_DOUBLE: double float format
|
|
* @VIPS_FORMAT_DPCOMPLEX: double complex (two double) format
|
|
*
|
|
* The format used for each band element.
|
|
*
|
|
* Each corresponnds to a native C type for the current machine. For example,
|
|
* #VIPS_FORMAT_USHORT is <type>unsigned short</type>.
|
|
*/
|
|
|
|
/**
|
|
* VipsCoding:
|
|
* @VIPS_CODING_NONE: pixels are not coded
|
|
* @VIPS_CODING_LABQ: pixels encode 3 float CIELAB values as 4 uchar
|
|
* @VIPS_CODING_RAD: pixels encode 3 float RGB as 4 uchar (Radiance coding)
|
|
*
|
|
* How pixels are coded.
|
|
*
|
|
* Normally, pixels are uncoded and can be manipulated as you would expect.
|
|
* However some file formats code pixels for compression, and sometimes it's
|
|
* useful to be able to manipulate images in the coded format.
|
|
*/
|
|
|
|
/**
|
|
* VipsProgress:
|
|
* @run: Time we have been running
|
|
* @eta: Estimated seconds of computation left
|
|
* @tpels: Number of pels we expect to calculate
|
|
* @npels: Number of pels calculated so far
|
|
* @percent: Percent complete
|
|
* @start: Start time
|
|
*
|
|
* A structure available to eval callbacks giving information on evaluation
|
|
* progress. See #VipsImage::eval.
|
|
*/
|
|
|
|
/**
|
|
* VipsImage:
|
|
*
|
|
* An image. These can represent an image on disc, a memory buffer, an image
|
|
* in the process of being written to disc or a partially evaluated image
|
|
* in memory.
|
|
*/
|
|
|
|
/**
|
|
* VIPS_IMAGE_SIZEOF_ELEMENT:
|
|
* @I: a #VipsImage
|
|
*
|
|
* Returns: sizeof() a band element.
|
|
*/
|
|
|
|
/**
|
|
* VIPS_IMAGE_SIZEOF_PEL:
|
|
* @I: a #VipsImage
|
|
*
|
|
* Returns: sizeof() a pixel.
|
|
*/
|
|
|
|
/**
|
|
* VIPS_IMAGE_SIZEOF_LINE:
|
|
* @I: a #VipsImage
|
|
*
|
|
* Returns: sizeof() a scanline of pixels.
|
|
*/
|
|
|
|
/**
|
|
* VIPS_IMAGE_N_ELEMENTS:
|
|
* @I: a #VipsImage
|
|
*
|
|
* Returns: The number of band elements in a scanline.
|
|
*/
|
|
|
|
/**
|
|
* VIPS_IMAGE_ADDR:
|
|
* @I: a #VipsImage
|
|
* @X: x coordinate
|
|
* @Y: y coordinate
|
|
*
|
|
* This macro returns a pointer to a pixel in an image. It only works for
|
|
* images which are fully available in memory, so memory buffers and small
|
|
* mapped images only.
|
|
*
|
|
* If VIPS_DEBUG is defined, you get a version that checks bounds for you.
|
|
*
|
|
* See also: VIPS_REGION_ADDR().
|
|
*
|
|
* Returns: The address of pixel (x,y) in the image.
|
|
*/
|
|
|
|
/* Properties.
|
|
*/
|
|
enum {
|
|
PROP_WIDTH = 1,
|
|
PROP_HEIGHT,
|
|
PROP_BANDS,
|
|
PROP_FORMAT,
|
|
PROP_FILENAME,
|
|
PROP_KILL,
|
|
PROP_MODE,
|
|
PROP_DEMAND,
|
|
PROP_SIZEOF_HEADER,
|
|
PROP_FOREIGN_BUFFER,
|
|
PROP_LAST
|
|
};
|
|
|
|
/* Our signals.
|
|
*/
|
|
enum {
|
|
SIG_PREEVAL,
|
|
SIG_EVAL,
|
|
SIG_POSTEVAL,
|
|
SIG_WRITTEN,
|
|
SIG_INVALIDATE,
|
|
SIG_LAST
|
|
};
|
|
|
|
/* Progress feedback. Only really useful for testing, tbh.
|
|
*/
|
|
int vips__progress = 0;
|
|
|
|
/* A string giving the image size (in bytes of uncompressed image) above which
|
|
* we decompress to disc on open. Can be eg. "12m" for 12 megabytes.
|
|
*/
|
|
char *vips__disc_threshold = NULL;
|
|
|
|
static guint vips_image_signals[SIG_LAST] = { 0 };
|
|
|
|
G_DEFINE_TYPE( VipsImage, vips_image, VIPS_TYPE_OBJECT );
|
|
|
|
static void
|
|
vips_image_finalize( GObject *gobject )
|
|
{
|
|
VipsImage *image = VIPS_IMAGE( gobject );
|
|
|
|
VIPS_DEBUG_MSG( "vips_image_finalize: %p\n", gobject );
|
|
|
|
/* Should be no regions defined on the image, since they all hold a
|
|
* ref to their host image.
|
|
*/
|
|
g_assert( !image->regions );
|
|
|
|
/* Therefore there should be no windows.
|
|
*/
|
|
g_assert( !image->windows );
|
|
|
|
/* Junk generate functions.
|
|
*/
|
|
image->start = NULL;
|
|
image->generate = NULL;
|
|
image->stop = NULL;
|
|
image->client1 = NULL;
|
|
image->client2 = NULL;
|
|
|
|
/* No more upstream/downstream links.
|
|
*/
|
|
vips__link_break_all( image );
|
|
|
|
/* Any file mapping?
|
|
*/
|
|
if( image->baseaddr ) {
|
|
/* MMAP file.
|
|
*/
|
|
VIPS_DEBUG_MSG( "vips_image_finalize: unmapping file\n" );
|
|
|
|
vips__munmap( image->baseaddr, image->length );
|
|
image->baseaddr = NULL;
|
|
image->length = 0;
|
|
|
|
/* This must have been a pointer to the mmap region, rather
|
|
* than a setbuf.
|
|
*/
|
|
image->data = NULL;
|
|
}
|
|
|
|
if( image->time ) {
|
|
VIPS_FREEF( g_timer_destroy, image->time->start );
|
|
VIPS_FREE( image->time );
|
|
}
|
|
|
|
/* Is there a file descriptor?
|
|
*/
|
|
if( image->fd != -1 ) {
|
|
VIPS_DEBUG_MSG( "vips_image_finalize: closing output file\n" );
|
|
|
|
if( image->dtype == VIPS_IMAGE_OPENOUT )
|
|
(void) vips__writehist( image );
|
|
if( close( image->fd ) == -1 )
|
|
vips_error( "VipsImage",
|
|
_( "unable to close fd for %s" ),
|
|
image->filename );
|
|
image->fd = -1;
|
|
}
|
|
|
|
/* Any image data?
|
|
*/
|
|
if( image->data ) {
|
|
/* Buffer image. Only free stuff we know we allocated.
|
|
*/
|
|
if( image->dtype == VIPS_IMAGE_SETBUF ) {
|
|
VIPS_DEBUG_MSG( "vips_image_finalize: "
|
|
"freeing buffer\n" );
|
|
vips_free( image->data );
|
|
image->dtype = VIPS_IMAGE_NONE;
|
|
}
|
|
|
|
image->data = NULL;
|
|
}
|
|
|
|
VIPS_FREE( image->filename );
|
|
VIPS_FREE( image->mode );
|
|
|
|
VIPS_FREEF( g_mutex_free, image->sslock );
|
|
|
|
VIPS_FREE( image->Hist );
|
|
VIPS_FREEF( vips__gslist_gvalue_free, image->history_list );
|
|
vips__meta_destroy( image );
|
|
|
|
G_OBJECT_CLASS( vips_image_parent_class )->finalize( gobject );
|
|
}
|
|
|
|
static void
|
|
vips_image_dispose( GObject *gobject )
|
|
{
|
|
VIPS_DEBUG_MSG( "vips_image_dispose: %p\n", gobject );
|
|
|
|
vips_object_preclose( VIPS_OBJECT( gobject ) );
|
|
|
|
G_OBJECT_CLASS( vips_image_parent_class )->dispose( gobject );
|
|
}
|
|
|
|
static void *
|
|
print_field_fn( VipsImage *image, const char *field, GValue *value, void *a )
|
|
{
|
|
VipsBuf *buf = (VipsBuf *) a;
|
|
|
|
const char *extra;
|
|
char *str_value;
|
|
|
|
/* Look for known enums and decode them.
|
|
*/
|
|
extra = NULL;
|
|
if( strcmp( field, "coding" ) == 0 )
|
|
extra = VIPS_ENUM_NICK(
|
|
VIPS_TYPE_CODING, g_value_get_int( value ) );
|
|
else if( strcmp( field, "format" ) == 0 )
|
|
extra = VIPS_ENUM_NICK(
|
|
VIPS_TYPE_BAND_FORMAT, g_value_get_int( value ) );
|
|
else if( strcmp( field, "interpretation" ) == 0 )
|
|
extra = VIPS_ENUM_NICK(
|
|
VIPS_TYPE_INTERPRETATION, g_value_get_int( value ) );
|
|
|
|
str_value = g_strdup_value_contents( value );
|
|
vips_buf_appendf( buf, "%s: %s", field, str_value );
|
|
g_free( str_value );
|
|
|
|
if( extra )
|
|
vips_buf_appendf( buf, " - %s", extra );
|
|
|
|
vips_buf_appendf( buf, "\n" );
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
static void
|
|
vips_image_print( VipsObject *object, VipsBuf *buf )
|
|
{
|
|
VipsImage *image = VIPS_IMAGE( object );
|
|
|
|
vips_buf_appendf( buf,
|
|
ngettext(
|
|
"%dx%d %s, %d band, %s",
|
|
"%dx%d %s, %d bands, %s",
|
|
vips_image_get_bands( image ) ),
|
|
vips_image_get_width( image ),
|
|
vips_image_get_height( image ),
|
|
VIPS_ENUM_NICK( VIPS_TYPE_BAND_FORMAT,
|
|
vips_image_get_format( image ) ),
|
|
vips_image_get_bands( image ),
|
|
VIPS_ENUM_NICK( VIPS_TYPE_INTERPRETATION,
|
|
vips_image_get_interpretation( image ) ) );
|
|
VIPS_OBJECT_CLASS( vips_image_parent_class )->print( object, buf );
|
|
vips_buf_appendf( buf, "\n" );
|
|
|
|
(void) vips_image_map( image, print_field_fn, (void *) buf );
|
|
|
|
vips_buf_appendf( buf, "Hist: %s", vips_image_get_history( image ) );
|
|
}
|
|
|
|
static void *
|
|
vips_image_sanity_upstream( VipsImage *up, VipsImage *down )
|
|
{
|
|
if( !g_slist_find( up->downstream, down ) ||
|
|
!g_slist_find( down->upstream, up ) )
|
|
return( up );
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
static void *
|
|
vips_image_sanity_downstream( VipsImage *down, VipsImage *up )
|
|
{
|
|
return( vips_image_sanity_upstream( up, down ) );
|
|
}
|
|
|
|
static void
|
|
vips_image_sanity( VipsObject *object, VipsBuf *buf )
|
|
{
|
|
VipsImage *image = VIPS_IMAGE( object );
|
|
|
|
if( !image->filename )
|
|
vips_buf_appends( buf, "NULL filename\n" );
|
|
|
|
/* All -1 means im has been inited but never used.
|
|
*/
|
|
if( image->Xsize != -1 ||
|
|
image->Ysize != -1 ||
|
|
image->Bands != -1 ||
|
|
image->BandFmt != -1 ) {
|
|
if( image->Xsize <= 0 ||
|
|
image->Ysize <= 0 ||
|
|
image->Bands <= 0 )
|
|
vips_buf_appends( buf, "bad dimensions\n" );
|
|
if( image->BandFmt < -1 ||
|
|
image->BandFmt > VIPS_FORMAT_DPCOMPLEX ||
|
|
(image->Coding != -1 &&
|
|
image->Coding != VIPS_CODING_NONE &&
|
|
image->Coding != VIPS_CODING_LABQ &&
|
|
image->Coding != VIPS_CODING_RAD) ||
|
|
image->Type > VIPS_INTERPRETATION_GREY16 ||
|
|
image->dtype > VIPS_IMAGE_PARTIAL ||
|
|
image->dhint > VIPS_DEMAND_STYLE_ANY )
|
|
vips_buf_appends( buf, "bad enum\n" );
|
|
if( image->Xres < 0 || image->Xres < 0 )
|
|
vips_buf_appends( buf, "bad resolution\n" );
|
|
}
|
|
|
|
if( vips_slist_map2( image->upstream,
|
|
(VipsSListMap2Fn) vips_image_sanity_upstream, image, NULL ) )
|
|
vips_buf_appends( buf, "upstream broken\n" );
|
|
if( vips_slist_map2( image->downstream,
|
|
(VipsSListMap2Fn) vips_image_sanity_downstream, image, NULL ) )
|
|
vips_buf_appends( buf, "downstream broken\n" );
|
|
|
|
VIPS_OBJECT_CLASS( vips_image_parent_class )->sanity( object, buf );
|
|
}
|
|
|
|
static void
|
|
vips_image_rewind( VipsObject *object )
|
|
{
|
|
VipsImage *image = VIPS_IMAGE( object );
|
|
char *filename;
|
|
char *mode;
|
|
|
|
/* The old values for filename and mode become the new defaults.
|
|
*/
|
|
filename = g_strdup( vips_image_get_filename( image ) );
|
|
mode = g_strdup( vips_image_get_mode( image ) );
|
|
|
|
VIPS_OBJECT_CLASS( vips_image_parent_class )->rewind( object );
|
|
|
|
g_assert( image->filename == NULL );
|
|
g_assert( image->mode == NULL );
|
|
|
|
image->filename = filename;
|
|
image->mode = mode;
|
|
}
|
|
|
|
static gboolean
|
|
vips_format_is_vips( VipsFormatClass *format )
|
|
{
|
|
return( strcmp( VIPS_OBJECT_CLASS( format )->nickname, "vips" ) == 0 );
|
|
}
|
|
|
|
/* Lazy open.
|
|
*/
|
|
|
|
/* What we track during a delayed open.
|
|
*/
|
|
typedef struct {
|
|
VipsImage *image;
|
|
VipsFormatClass *format;/* Read in pixels with this */
|
|
char *filename; /* Get pixels from here */
|
|
gboolean disc; /* Read via disc requested */
|
|
|
|
VipsImage *real; /* The real decompressed image */
|
|
} Lazy;
|
|
|
|
static void
|
|
lazy_free_cb( Lazy *lazy )
|
|
{
|
|
VIPS_FREE( lazy->filename );
|
|
VIPS_UNREF( lazy->real );
|
|
}
|
|
|
|
static Lazy *
|
|
lazy_new( VipsImage *image,
|
|
VipsFormatClass *format, const char *filename, gboolean disc )
|
|
{
|
|
Lazy *lazy;
|
|
|
|
VIPS_DEBUG_MSG( "lazy_new: \"%s\"\n", filename );
|
|
|
|
if( !(lazy = VIPS_NEW( image, Lazy )) )
|
|
return( NULL );
|
|
lazy->image = image;
|
|
lazy->format = format;
|
|
lazy->filename = NULL;
|
|
lazy->disc = disc;
|
|
lazy->real = NULL;
|
|
g_signal_connect( image, "close", G_CALLBACK( lazy_free_cb ), NULL );
|
|
|
|
if( !(lazy->filename = vips_strdup( NULL, filename )) )
|
|
return( NULL );
|
|
|
|
return( lazy );
|
|
}
|
|
|
|
typedef struct {
|
|
const char unit;
|
|
int multiplier;
|
|
} Unit;
|
|
|
|
static size_t
|
|
parse_size( const char *size_string )
|
|
{
|
|
static Unit units[] = {
|
|
{ 'k', 1024 },
|
|
{ 'm', 1024 * 1024 },
|
|
{ 'g', 1024 * 1024 * 1024 }
|
|
};
|
|
|
|
size_t size;
|
|
int n;
|
|
int i, j;
|
|
char *unit;
|
|
|
|
/* An easy way to alloc a buffer large enough.
|
|
*/
|
|
unit = g_strdup( size_string );
|
|
n = sscanf( size_string, "%d %s", &i, unit );
|
|
if( n > 0 )
|
|
size = i;
|
|
if( n > 1 ) {
|
|
for( j = 0; j < VIPS_NUMBER( units ); j++ )
|
|
if( tolower( unit[0] ) == units[j].unit ) {
|
|
size *= units[j].multiplier;
|
|
break;
|
|
}
|
|
}
|
|
g_free( unit );
|
|
|
|
VIPS_DEBUG_MSG( "parse_size: parsed \"%s\" as %zd\n",
|
|
size_string, size );
|
|
|
|
return( size );
|
|
}
|
|
|
|
static size_t
|
|
disc_threshold( void )
|
|
{
|
|
static gboolean done = FALSE;
|
|
static size_t threshold;
|
|
|
|
if( !done ) {
|
|
const char *env;
|
|
|
|
done = TRUE;
|
|
|
|
/* 100mb default.
|
|
*/
|
|
threshold = 100 * 1024 * 1024;
|
|
|
|
if( (env = g_getenv( "IM_DISC_THRESHOLD" )) )
|
|
threshold = parse_size( env );
|
|
|
|
if( vips__disc_threshold )
|
|
threshold = parse_size( vips__disc_threshold );
|
|
|
|
VIPS_DEBUG_MSG( "disc_threshold: %zd bytes\n", threshold );
|
|
}
|
|
|
|
return( threshold );
|
|
}
|
|
|
|
/* Make the real underlying image: either a direct disc file, or a temp file
|
|
* somewhere.
|
|
*/
|
|
static VipsImage *
|
|
lazy_real_image( Lazy *lazy )
|
|
{
|
|
VipsImage *real;
|
|
|
|
/* We open to disc if:
|
|
* - 'disc' is set
|
|
* - disc_threshold() has not been set to zero
|
|
* - the format does not support lazy read
|
|
* - the image will be more than a megabyte, uncompressed
|
|
*/
|
|
real = NULL;
|
|
if( lazy->disc &&
|
|
disc_threshold() &&
|
|
!(vips_format_get_flags( lazy->format, lazy->filename ) &
|
|
VIPS_FORMAT_PARTIAL) &&
|
|
VIPS_IMAGE_SIZEOF_IMAGE( lazy->image ) > disc_threshold() ) {
|
|
if( !(real = vips_image_new_disc_temp( "%s.v" )) )
|
|
return( NULL );
|
|
|
|
VIPS_DEBUG_MSG( "lazy_real_image: "
|
|
"opening to disc file \"%s\"\n",
|
|
real->filename );
|
|
}
|
|
|
|
/* Otherwise, fall back to a "p".
|
|
*/
|
|
if( !real &&
|
|
!(real = vips_image_new( "p" )) )
|
|
return( NULL );
|
|
|
|
return( real );
|
|
}
|
|
|
|
/* Our start function ... do the lazy open, if necessary, and return a region
|
|
* on the new image.
|
|
*/
|
|
static void *
|
|
open_lazy_start( VipsImage *out, void *a, void *dummy )
|
|
{
|
|
Lazy *lazy = (Lazy *) a;
|
|
|
|
if( !lazy->real ) {
|
|
if( !(lazy->real = lazy_real_image( lazy )) ||
|
|
lazy->format->load( lazy->filename, lazy->real ) ||
|
|
vips_image_pio_input( lazy->real ) ) {
|
|
VIPS_UNREF( lazy->real );
|
|
return( NULL );
|
|
}
|
|
}
|
|
|
|
return( vips_region_new( lazy->real ) );
|
|
}
|
|
|
|
/* Just copy.
|
|
*/
|
|
static int
|
|
open_lazy_generate( VipsRegion *or, void *seq, void *a, void *b )
|
|
{
|
|
VipsRegion *ir = (VipsRegion *) seq;
|
|
|
|
VipsRect *r = &or->valid;
|
|
|
|
/* Ask for input we need.
|
|
*/
|
|
if( vips_region_prepare( ir, r ) )
|
|
return( -1 );
|
|
|
|
/* Attach output region to that.
|
|
*/
|
|
if( vips_region_region( or, ir, r, r->left, r->top ) )
|
|
return( -1 );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/* Lazy open ... init the header with the first OpenLazyFn, delay actually
|
|
* decoding pixels with the second OpenLazyFn until the first generate().
|
|
*/
|
|
static int
|
|
vips_image_open_lazy( VipsImage *image,
|
|
VipsFormatClass *format, const char *filename, gboolean disc )
|
|
{
|
|
Lazy *lazy;
|
|
|
|
if( !(lazy = lazy_new( image, format, filename, disc )) )
|
|
return( -1 );
|
|
|
|
/* Read header fields to init the return image. THINSTRIP since this is
|
|
* probably a disc file. We can't tell yet whether we will be opening
|
|
* to memory, sadly, so we can't suggest ANY.
|
|
*/
|
|
if( format->header( filename, image ) ||
|
|
vips_demand_hint( image, VIPS_DEMAND_STYLE_THINSTRIP, NULL ) )
|
|
return( -1 );
|
|
|
|
/* Then 'start' creates the real image and 'gen' paints 'out' with
|
|
* pixels from the real image on demand.
|
|
*/
|
|
if( vips_image_generate( image,
|
|
open_lazy_start, open_lazy_generate, vips_stop_one,
|
|
lazy, NULL ) )
|
|
return( -1 );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/* Lazy save.
|
|
*/
|
|
|
|
/* If we write to (eg.) TIFF, actually do the write
|
|
* to a "p" and on "written" do im_vips2tiff() or whatever. Track save
|
|
* parameters here.
|
|
*/
|
|
typedef struct {
|
|
int (*save_fn)(); /* Save function */
|
|
char *filename; /* Save args */
|
|
} SaveBlock;
|
|
|
|
/* From "written" callback: invoke a delayed save.
|
|
*/
|
|
static void
|
|
vips_image_save_cb( VipsImage *image, int *result, SaveBlock *sb )
|
|
{
|
|
if( sb->save_fn( image, sb->filename ) )
|
|
*result = -1;
|
|
}
|
|
|
|
static void
|
|
vips_attach_save( VipsImage *image, int (*save_fn)(), const char *filename )
|
|
{
|
|
SaveBlock *sb;
|
|
|
|
if( (sb = VIPS_NEW( image, SaveBlock )) ) {
|
|
sb->save_fn = save_fn;
|
|
sb->filename = vips_strdup( image, filename );
|
|
g_signal_connect( image, "written",
|
|
G_CALLBACK( vips_image_save_cb ), sb );
|
|
}
|
|
}
|
|
|
|
/* Progress feedback.
|
|
*/
|
|
|
|
static int
|
|
vips_image_preeval_cb( VipsImage *image, VipsProgress *progress, int *last )
|
|
{
|
|
int tile_width;
|
|
int tile_height;
|
|
int nlines;
|
|
|
|
*last = -1;
|
|
|
|
vips_get_tile_size( image,
|
|
&tile_width, &tile_height, &nlines );
|
|
printf( _( "%s %s: %d threads, %d x %d tiles, groups of %d scanlines" ),
|
|
g_get_prgname(), image->filename,
|
|
vips_concurrency_get(),
|
|
tile_width, tile_height, nlines );
|
|
printf( "\n" );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
static int
|
|
vips_image_eval_cb( VipsImage *image, VipsProgress *progress, int *last )
|
|
{
|
|
if( progress->percent != *last ) {
|
|
printf( _( "%s %s: %d%% complete" ),
|
|
g_get_prgname(), image->filename,
|
|
progress->percent );
|
|
printf( "\r" );
|
|
fflush( stdout );
|
|
|
|
*last = progress->percent;
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
static int
|
|
vips_image_posteval_cb( VipsImage *image, VipsProgress *progress )
|
|
{
|
|
/* Spaces at end help to erase the %complete message we overwrite.
|
|
*/
|
|
printf( _( "%s %s: done in %ds \n" ),
|
|
g_get_prgname(), image->filename, progress->run );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/* Attach progress feedback, if required.
|
|
*/
|
|
static void
|
|
vips_image_add_progress( VipsImage *image )
|
|
{
|
|
if( vips__progress ||
|
|
g_getenv( "IM_PROGRESS" ) ) {
|
|
|
|
/* Keep the %complete we displayed last time here.
|
|
*/
|
|
int *last = VIPS_NEW( image, int );
|
|
|
|
g_signal_connect( image, "preeval",
|
|
G_CALLBACK( vips_image_preeval_cb ), last );
|
|
g_signal_connect( image, "eval",
|
|
G_CALLBACK( vips_image_eval_cb ), last );
|
|
g_signal_connect( image, "posteval",
|
|
G_CALLBACK( vips_image_posteval_cb ), NULL );
|
|
|
|
vips_image_set_progress( image, TRUE );
|
|
}
|
|
}
|
|
|
|
static int
|
|
vips_image_build( VipsObject *object )
|
|
{
|
|
VipsImage *image = VIPS_IMAGE( object );
|
|
const char *filename = image->filename;
|
|
const char *mode = image->mode;
|
|
VipsFormatClass *format;
|
|
|
|
VIPS_DEBUG_MSG( "vips_image_build: %p\n", image );
|
|
|
|
if( VIPS_OBJECT_CLASS( vips_image_parent_class )->build( object ) )
|
|
return( -1 );
|
|
|
|
/* Parse the mode string.
|
|
*/
|
|
switch( mode[0] ) {
|
|
case 'r':
|
|
if( !(format = vips_format_for_file( filename )) )
|
|
return( -1 );
|
|
|
|
if( vips_format_is_vips( format ) ) {
|
|
/* We may need to byteswap.
|
|
*/
|
|
VipsFormatFlags flags =
|
|
vips_format_get_flags( format, filename );
|
|
gboolean native = (flags & VIPS_FORMAT_BIGENDIAN) ==
|
|
vips_amiMSBfirst();
|
|
|
|
if( native ) {
|
|
if( vips_image_open_input( image ) )
|
|
return( -1 );
|
|
|
|
if( mode[1] == 'w' )
|
|
image->dtype = VIPS_IMAGE_MMAPINRW;
|
|
}
|
|
else {
|
|
VipsImage *x;
|
|
|
|
if( !(x = vips_image_new( "p" )) )
|
|
return( -1 );
|
|
vips_object_local( image, x );
|
|
if( vips_image_open_input( x ) )
|
|
return( -1 );
|
|
image->dtype = VIPS_IMAGE_PARTIAL;
|
|
if( im_copy_swap( x, image ) )
|
|
return( -1 );
|
|
}
|
|
}
|
|
else {
|
|
/* Make this a partial, generate into it from the
|
|
* converter.
|
|
*/
|
|
image->dtype = VIPS_IMAGE_PARTIAL;
|
|
|
|
if( vips_image_open_lazy( image, format,
|
|
filename, mode[1] == 'd' ) )
|
|
return( -1 );
|
|
}
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
if( !(format = vips_format_for_name( filename )) )
|
|
return( -1 );
|
|
|
|
if( vips_format_is_vips( format ) )
|
|
image->dtype = VIPS_IMAGE_OPENOUT;
|
|
else {
|
|
image->dtype = VIPS_IMAGE_PARTIAL;
|
|
vips_attach_save( image,
|
|
format->save, filename );
|
|
}
|
|
break;
|
|
|
|
case 't':
|
|
image->dtype = VIPS_IMAGE_SETBUF;
|
|
image->dhint = VIPS_DEMAND_STYLE_ANY;
|
|
break;
|
|
|
|
case 'p':
|
|
image->dtype = VIPS_IMAGE_PARTIAL;
|
|
break;
|
|
|
|
case 'a':
|
|
/* Check parameters.
|
|
*/
|
|
if( image->sizeof_header < 0 ) {
|
|
vips_error( "VipsImage", "%s", _( "bad parameters" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
if( (image->fd = vips__open_image_read( filename )) == -1 )
|
|
return( -1 );
|
|
image->dtype = VIPS_IMAGE_OPENIN;
|
|
image->dhint = VIPS_DEMAND_STYLE_THINSTRIP;
|
|
|
|
if( image->Bands == 1 )
|
|
image->Type = VIPS_INTERPRETATION_B_W;
|
|
else if( image->Bands == 3 )
|
|
image->Type = VIPS_INTERPRETATION_RGB;
|
|
else
|
|
image->Type = VIPS_INTERPRETATION_MULTIBAND;
|
|
|
|
/* Read the real file length and check against what we think
|
|
* the size should be.
|
|
*/
|
|
if( (image->file_length = vips_file_length( image->fd )) == -1 )
|
|
return( -1 );
|
|
|
|
/* Very common, so a special message.
|
|
*/
|
|
if( image->file_length < VIPS_IMAGE_SIZEOF_IMAGE( image ) ) {
|
|
vips_error( "VipsImage",
|
|
_( "unable to open \"%s\", file too short" ),
|
|
image->filename );
|
|
return( -1 );
|
|
}
|
|
|
|
/* Just weird. Only print a warning for this, since we should
|
|
* still be able to process it without coredumps.
|
|
*/
|
|
if( image->file_length > VIPS_IMAGE_SIZEOF_IMAGE( image ) )
|
|
vips_warn( "VipsImage",
|
|
_( "%s is longer than expected" ),
|
|
image->filename );
|
|
break;
|
|
|
|
case 'm':
|
|
if( image->Bands == 1 )
|
|
image->Type = VIPS_INTERPRETATION_B_W;
|
|
else if( image->Bands == 3 )
|
|
image->Type = VIPS_INTERPRETATION_RGB;
|
|
else
|
|
image->Type = VIPS_INTERPRETATION_MULTIBAND;
|
|
|
|
image->dtype = VIPS_IMAGE_SETBUF_FOREIGN;
|
|
|
|
break;
|
|
|
|
default:
|
|
vips_error( "VipsImage", _( "bad mode \"%s\"" ), mode );
|
|
|
|
return( -1 );
|
|
}
|
|
|
|
vips_image_add_progress( image );
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
static void *
|
|
vips_region_invalidate( VipsRegion *reg )
|
|
{
|
|
reg->invalid = TRUE;
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
static void
|
|
vips_image_real_invalidate( VipsImage *image )
|
|
{
|
|
VIPS_DEBUG_MSG( "vips_image_real_invalidate: %p\n", image );
|
|
|
|
g_mutex_lock( image->sslock );
|
|
(void) vips_slist_map2( image->regions,
|
|
(VipsSListMap2Fn) vips_region_invalidate, NULL, NULL );
|
|
g_mutex_unlock( image->sslock );
|
|
}
|
|
|
|
static void
|
|
vips_image_class_init( VipsImageClass *class )
|
|
{
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS( class );
|
|
VipsObjectClass *vobject_class = VIPS_OBJECT_CLASS( class );
|
|
GParamSpec *pspec;
|
|
|
|
/* Pass in a nonsense name for argv0 ... this init world is only here
|
|
* for old programs which are missing an vips_init() call. We must
|
|
* have threads set up before we can process.
|
|
*/
|
|
if( vips_init( "vips" ) )
|
|
vips_error_clear();
|
|
|
|
gobject_class->finalize = vips_image_finalize;
|
|
gobject_class->dispose = vips_image_dispose;
|
|
gobject_class->set_property = vips_object_set_property;
|
|
gobject_class->get_property = vips_object_get_property;
|
|
|
|
vobject_class->nickname = "image";
|
|
vobject_class->description = _( "VIPS image class" );
|
|
|
|
vobject_class->print = vips_image_print;
|
|
vobject_class->sanity = vips_image_sanity;
|
|
vobject_class->rewind = vips_image_rewind;
|
|
vobject_class->build = vips_image_build;
|
|
|
|
class->invalidate = vips_image_real_invalidate;
|
|
|
|
/* Create properties.
|
|
*/
|
|
|
|
/* Width / height / bands can be zero for unintialised.
|
|
*/
|
|
pspec = g_param_spec_int( "width", "Width",
|
|
_( "Image width in pixels" ),
|
|
0, 1000000, 0,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_WIDTH, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE,
|
|
G_STRUCT_OFFSET( VipsImage, Xsize ) );
|
|
pspec = g_param_spec_int( "height", "Height",
|
|
_( "Image height in pixels" ),
|
|
0, 1000000, 0,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_HEIGHT, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE,
|
|
G_STRUCT_OFFSET( VipsImage, Ysize ) );
|
|
pspec = g_param_spec_int( "bands", "Bands",
|
|
_( "Number of bands in image" ),
|
|
0, 1000000, 0,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_BANDS, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE,
|
|
G_STRUCT_OFFSET( VipsImage, Bands ) );
|
|
|
|
pspec = g_param_spec_enum( "format", "Format",
|
|
_( "Pixel format in image" ),
|
|
VIPS_TYPE_BAND_FORMAT, VIPS_FORMAT_UCHAR,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_FORMAT, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE,
|
|
G_STRUCT_OFFSET( VipsImage, BandFmt ) );
|
|
|
|
pspec = g_param_spec_string( "filename", "Filename",
|
|
_( "Image filename" ),
|
|
NULL,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_FILENAME, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_CONSTRUCT,
|
|
G_STRUCT_OFFSET( VipsImage, filename ) );
|
|
|
|
pspec = g_param_spec_string( "mode", "Mode",
|
|
_( "Open mode" ),
|
|
"p", /* Default to partial */
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_MODE, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_CONSTRUCT,
|
|
G_STRUCT_OFFSET( VipsImage, mode ) );
|
|
|
|
pspec = g_param_spec_boolean( "kill", "Kill",
|
|
_( "Block evaluation on this image" ),
|
|
FALSE,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_KILL, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_NONE,
|
|
G_STRUCT_OFFSET( VipsImage, kill ) );
|
|
|
|
pspec = g_param_spec_enum( "demand", "Demand",
|
|
_( "Preferred demand style for this image" ),
|
|
VIPS_TYPE_DEMAND_STYLE, VIPS_DEMAND_STYLE_SMALLTILE,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class, PROP_DEMAND, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_NONE,
|
|
G_STRUCT_OFFSET( VipsImage, dhint ) );
|
|
|
|
pspec = g_param_spec_int( "sizeof_header", "Size of header",
|
|
_( "Offset in bytes from start of file" ),
|
|
0, 1000000, VIPS_SIZEOF_HEADER,
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class,
|
|
PROP_SIZEOF_HEADER, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE | VIPS_ARGUMENT_CONSTRUCT,
|
|
G_STRUCT_OFFSET( VipsImage, sizeof_header ) );
|
|
|
|
pspec = g_param_spec_pointer( "foreign_buffer", "Foreign buffer",
|
|
"Pointer to foreign pixels",
|
|
G_PARAM_READWRITE );
|
|
g_object_class_install_property( gobject_class,
|
|
PROP_FOREIGN_BUFFER, pspec );
|
|
vips_object_class_install_argument( vobject_class, pspec,
|
|
VIPS_ARGUMENT_SET_ONCE | VIPS_ARGUMENT_CONSTRUCT,
|
|
G_STRUCT_OFFSET( VipsImage, data ) );
|
|
|
|
/* Create signals.
|
|
*/
|
|
|
|
vips_image_signals[SIG_PREEVAL] = g_signal_new( "preeval",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET( VipsImageClass, preeval ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__POINTER,
|
|
G_TYPE_NONE, 1,
|
|
G_TYPE_POINTER );
|
|
vips_image_signals[SIG_EVAL] = g_signal_new( "eval",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET( VipsImageClass, eval ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__POINTER,
|
|
G_TYPE_NONE, 1,
|
|
G_TYPE_POINTER );
|
|
vips_image_signals[SIG_POSTEVAL] = g_signal_new( "posteval",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST,
|
|
G_STRUCT_OFFSET( VipsImageClass, posteval ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__POINTER,
|
|
G_TYPE_NONE, 1,
|
|
G_TYPE_POINTER );
|
|
|
|
vips_image_signals[SIG_WRITTEN] = g_signal_new( "written",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
|
G_STRUCT_OFFSET( VipsImageClass, written ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__POINTER,
|
|
G_TYPE_NONE, 1,
|
|
G_TYPE_POINTER );
|
|
|
|
vips_image_signals[SIG_INVALIDATE] = g_signal_new( "invalidate",
|
|
G_TYPE_FROM_CLASS( class ),
|
|
G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
|
|
G_STRUCT_OFFSET( VipsImageClass, invalidate ),
|
|
NULL, NULL,
|
|
g_cclosure_marshal_VOID__VOID,
|
|
G_TYPE_NONE, 0 );
|
|
}
|
|
|
|
static void
|
|
vips_image_init( VipsImage *image )
|
|
{
|
|
/* Default to native order.
|
|
*/
|
|
image->magic = vips_amiMSBfirst() ? VIPS_MAGIC_SPARC : VIPS_MAGIC_INTEL;
|
|
|
|
image->Xres = 1.0;
|
|
image->Yres = 1.0;
|
|
|
|
image->fd = -1; /* since 0 is stdout */
|
|
image->sslock = g_mutex_new();
|
|
|
|
image->sizeof_header = VIPS_SIZEOF_HEADER;
|
|
}
|
|
|
|
int
|
|
vips_image_written( VipsImage *image )
|
|
{
|
|
int result;
|
|
|
|
VIPS_DEBUG_MSG( "vips_image_written: %p\n", image );
|
|
|
|
result = 0;
|
|
g_signal_emit( image, vips_image_signals[SIG_WRITTEN], 0, &result );
|
|
|
|
return( result );
|
|
}
|
|
|
|
void
|
|
vips_image_invalidate( VipsImage *image )
|
|
{
|
|
VIPS_DEBUG_MSG( "vips_image_invalidate: %p\n", image );
|
|
|
|
g_signal_emit( image, vips_image_signals[SIG_INVALIDATE], 0 );
|
|
}
|
|
|
|
static void *
|
|
vips_image_invalidate_all_cb( VipsImage *image )
|
|
{
|
|
vips_image_invalidate( image );
|
|
|
|
return( NULL );
|
|
}
|
|
|
|
/**
|
|
* vips_image_invalidate_all:
|
|
* @image: #VipsImage to invalidate
|
|
*
|
|
* Invalidate all pixel caches on an @image and any derived images. The
|
|
* "invalidate" callback is triggered for all invalidated images.
|
|
*/
|
|
void
|
|
vips_image_invalidate_all( VipsImage *image )
|
|
{
|
|
(void) vips__link_map( image,
|
|
(VipsSListMap2Fn) vips_image_invalidate_all_cb, NULL, NULL );
|
|
}
|
|
|
|
/* Attach a new time struct, if necessary, and reset it.
|
|
*/
|
|
static int
|
|
vips_progress_add( VipsImage *image )
|
|
{
|
|
VipsProgress *progress;
|
|
|
|
VIPS_DEBUG_MSG( "vips_progress_add: %p\n", image );
|
|
|
|
if( !(progress = image->time) ) {
|
|
if( !(image->time = VIPS_NEW( NULL, VipsProgress )) )
|
|
return( -1 );
|
|
progress = image->time;
|
|
|
|
progress->im = image;
|
|
progress->start = NULL;
|
|
}
|
|
|
|
if( !progress->start )
|
|
progress->start = g_timer_new();
|
|
|
|
g_timer_start( progress->start );
|
|
progress->run = 0;
|
|
progress->eta = 0;
|
|
progress->tpels = (gint64) image->Xsize * image->Ysize;
|
|
progress->npels = 0;
|
|
progress->percent = 0;
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
void
|
|
vips_progress_update( VipsProgress *progress, int w, int h )
|
|
{
|
|
float prop;
|
|
|
|
VIPS_DEBUG_MSG( "vips_progress_update: %p\n", progress );
|
|
|
|
g_assert( progress );
|
|
|
|
progress->run = g_timer_elapsed( progress->start, NULL );
|
|
progress->npels += w * h;
|
|
prop = (float) progress->npels / (float) progress->tpels;
|
|
progress->percent = 100 * prop;
|
|
|
|
/* Don't estiomate eta until we are 10% in.
|
|
*/
|
|
if( prop > 0.1 )
|
|
progress->eta = (1.0 / prop) * progress->run - progress->run;
|
|
}
|
|
|
|
void
|
|
vips_image_preeval( VipsImage *image )
|
|
{
|
|
if( image->progress_signal ) {
|
|
VIPS_DEBUG_MSG( "vips_image_preeval: %p\n", image );
|
|
|
|
g_assert( vips_object_sanity(
|
|
VIPS_OBJECT( image->progress_signal ) ) );
|
|
|
|
(void) vips_progress_add( image );
|
|
|
|
/* For vips7 compat, we also have to make sure ->time on the
|
|
* image that was originally marked with
|
|
* vips_image_set_progress() is valid.
|
|
*/
|
|
(void) vips_progress_add( image->progress_signal );
|
|
|
|
g_signal_emit( image->progress_signal,
|
|
vips_image_signals[SIG_PREEVAL], 0,
|
|
image->progress_signal->time );
|
|
}
|
|
}
|
|
|
|
/* Another w * h pixels have been processed.
|
|
*/
|
|
void
|
|
vips_image_eval( VipsImage *image, int w, int h )
|
|
{
|
|
if( image->progress_signal ) {
|
|
VIPS_DEBUG_MSG( "vips_image_eval: %p\n", image );
|
|
|
|
g_assert( vips_object_sanity(
|
|
VIPS_OBJECT( image->progress_signal ) ) );
|
|
|
|
vips_progress_update( image->time, w, h );
|
|
|
|
/* For vips7 compat, update the ->time on the signalling image
|
|
* too, even though it may have a different width/height to
|
|
* the image we are actually generating.
|
|
*/
|
|
if( image->progress_signal->time != image->time )
|
|
vips_progress_update( image->progress_signal->time,
|
|
w, h );
|
|
|
|
g_signal_emit( image->progress_signal,
|
|
vips_image_signals[SIG_EVAL], 0, image->time );
|
|
}
|
|
}
|
|
|
|
void
|
|
vips_image_posteval( VipsImage *image )
|
|
{
|
|
if( image->progress_signal ) {
|
|
VipsProgress *progress = image->progress_signal->time;
|
|
|
|
VIPS_DEBUG_MSG( "vips_image_posteval: %p\n", image );
|
|
|
|
g_assert( progress );
|
|
g_assert( vips_object_sanity(
|
|
VIPS_OBJECT( image->progress_signal ) ) );
|
|
|
|
g_signal_emit( image->progress_signal,
|
|
vips_image_signals[SIG_POSTEVAL], 0, progress );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* vips_image_set_progress:
|
|
* @image: image to signal progress on
|
|
* @progress: turn progress reporting on or off
|
|
*
|
|
* vips signals evaluation progress via the "preeval", "eval" and "posteval"
|
|
* signals. Progress is signalled on the most-downstream image for which
|
|
* vips_image_set_progress() was called.
|
|
*/
|
|
void
|
|
vips_image_set_progress( VipsImage *image, gboolean progress )
|
|
{
|
|
if( progress && !image->progress_signal ) {
|
|
VIPS_DEBUG_MSG( "vips_image_set_progress: %s\n",
|
|
image->filename );
|
|
image->progress_signal = image;
|
|
}
|
|
else
|
|
image->progress_signal = NULL;
|
|
}
|
|
|
|
gboolean
|
|
vips_image_get_kill( VipsImage *image )
|
|
{
|
|
/* Has kill been set for this image? If yes, abort evaluation.
|
|
*/
|
|
if( image->kill )
|
|
vips_error( "VipsImage",
|
|
_( "killed for image \"%s\"" ), image->filename );
|
|
|
|
return( image->kill );
|
|
}
|
|
|
|
void
|
|
vips_image_set_kill( VipsImage *image, gboolean kill )
|
|
{
|
|
if( !image->kill )
|
|
VIPS_DEBUG_MSG( "vips_image_set_kill: %s\n", image->filename );
|
|
|
|
image->kill = kill;
|
|
}
|
|
|
|
/* Make a name for a filename-less image. Use immediately, don'#t free the
|
|
* result.
|
|
*/
|
|
static const char *
|
|
vips_image_temp_name( void )
|
|
{
|
|
static int serial = 0;
|
|
static char name[256];
|
|
|
|
vips_snprintf( name, 256, "temp-%d", serial++ );
|
|
|
|
return( name );
|
|
}
|
|
|
|
/**
|
|
* vips_image_new:
|
|
* @mode: mode to open with
|
|
*
|
|
* vips_image_new() examines the mode string and creates an
|
|
* appropriate #VipsImage.
|
|
*
|
|
* <itemizedlist>
|
|
* <listitem>
|
|
* <para>
|
|
* <emphasis>"t"</emphasis>
|
|
* creates a temporary memory buffer image.
|
|
* </para>
|
|
* </listitem>
|
|
* <listitem>
|
|
* <para>
|
|
* <emphasis>"p"</emphasis>
|
|
* creates a "glue" descriptor you can use to join two image
|
|
* processing operations together.
|
|
* </para>
|
|
* </listitem>
|
|
* </itemizedlist>
|
|
*
|
|
* Returns: the new #VipsImage, or %NULL on error.
|
|
*/
|
|
VipsImage *
|
|
vips_image_new( const char *mode )
|
|
{
|
|
VipsImage *image;
|
|
|
|
image = VIPS_IMAGE( g_object_new( VIPS_TYPE_IMAGE, NULL ) );
|
|
g_object_set( image,
|
|
"filename", vips_image_temp_name(),
|
|
"mode", mode,
|
|
NULL );
|
|
if( vips_object_build( VIPS_OBJECT( image ) ) ) {
|
|
VIPS_UNREF( image );
|
|
return( NULL );
|
|
}
|
|
|
|
return( image );
|
|
}
|
|
|
|
/**
|
|
* vips_image_new_array:
|
|
* @parent: images unref when this object unrefs
|
|
* @OUT: array to fill with #VipsImage *
|
|
* @N: array size
|
|
*
|
|
* Just like vips_image_new(), but opens an array of "p" images.
|
|
* Handy for creating a
|
|
* set of temporary images for a function.
|
|
*
|
|
* Example:
|
|
*
|
|
* |[
|
|
* VipsImage *t[5];
|
|
*
|
|
* if( vips_image_new_array( out, t, 5 ) ||
|
|
* vips_add( a, b, t[0] ) ||
|
|
* vips_invert( t[0], t[1] ) ||
|
|
* vips_add( t[1], t[0], t[2] ) ||
|
|
* vips_costra( t[2], out ) )
|
|
* return( -1 );
|
|
* ]|
|
|
*
|
|
* See also: vips_image_new(), vips_object_local().
|
|
*
|
|
* Returns: 0 on sucess, or -1 on error
|
|
*/
|
|
int
|
|
vips_image_new_array( VipsObject *parent, VipsImage **images, int n )
|
|
{
|
|
int i;
|
|
|
|
for( i = 0; i < n; i++ ) {
|
|
if( !(images[i] = vips_image_new( "p" )) )
|
|
return( -1 );
|
|
vips_object_local( parent, images[i] );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_new_from_file:
|
|
* @filename: file to open
|
|
* @mode: mode to open with
|
|
*
|
|
* vips_image_new_from_file() examines the mode string and creates an
|
|
* appropriate #VipsImage.
|
|
*
|
|
* <itemizedlist>
|
|
* <listitem>
|
|
* <para>
|
|
* <emphasis>"r"</emphasis>
|
|
* opens the named file for reading. If the file is not in the native
|
|
* VIPS format for your machine, vips_image_new_from_file()
|
|
* automatically converts the file for you in memory.
|
|
*
|
|
* For some large files (eg. TIFF) this may
|
|
* not be what you want, it can fill memory very quickly. Instead, you
|
|
* can either use "rd" mode (see below), or you can use the lower-level
|
|
* API and control the loading process yourself. See
|
|
* #VipsBandFormat.
|
|
*
|
|
* vips_image_new_from_file() can read files in most formats.
|
|
*
|
|
* Note that <emphasis>"r"</emphasis> mode works in at least two stages.
|
|
* It should return quickly and let you check header fields. It will
|
|
* only actually read in pixels when you first access them.
|
|
* </para>
|
|
* </listitem>
|
|
* <listitem>
|
|
* <para>
|
|
* <emphasis>"rd"</emphasis>
|
|
* opens the named file for reading. If the uncompressed image is larger
|
|
* than a threshold and the file format does not support random access,
|
|
* rather than uncompressing to memory, vips_image_new_from_file() will
|
|
* uncompress to a temporary disc file. This file will be automatically
|
|
* deleted when the IMAGE is closed.
|
|
*
|
|
* See im_system_image() for an explanation of how VIPS selects a
|
|
* location for the temporary file.
|
|
*
|
|
* The disc threshold can be set with the "--vips-disc-threshold"
|
|
* command-line argument, or the IM_DISC_THRESHOLD environment variable.
|
|
* The value is a simple integer, but can take a unit postfix of "k",
|
|
* "m" or "g" to indicate kilobytes, megabytes or gigabytes.
|
|
*
|
|
* For example:
|
|
*
|
|
* |[
|
|
* vips --vips-disc-threshold "500m" im_copy fred.tif fred.v
|
|
* ]|
|
|
*
|
|
* will copy via disc if "fred.tif" is more than 500 Mbytes
|
|
* uncompressed. The default threshold is 100MB.
|
|
* </para>
|
|
* </listitem>
|
|
* <listitem>
|
|
* <para>
|
|
* <emphasis>"w"</emphasis>
|
|
* opens the named file for writing. It looks at the file name
|
|
* suffix to determine the type to write -- for example:
|
|
*
|
|
* |[
|
|
* vips_image_new_from_file( "fred.tif", "w" )
|
|
* ]|
|
|
*
|
|
* will write in TIFF format.
|
|
* </para>
|
|
* </listitem>
|
|
* <listitem>
|
|
* <para>
|
|
* <emphasis>"rw"</emphasis>
|
|
* opens the named file for reading and writing. This will only work for
|
|
* VIPS files in a format native to your machine. It is only for
|
|
* paintbox-type applications.
|
|
* </para>
|
|
* </listitem>
|
|
* </itemizedlist>
|
|
*
|
|
* Returns: the new #VipsImage, or %NULL on error.
|
|
*/
|
|
VipsImage *
|
|
vips_image_new_from_file( const char *filename, const char *mode )
|
|
{
|
|
VipsImage *image;
|
|
|
|
image = VIPS_IMAGE( g_object_new( VIPS_TYPE_IMAGE, NULL ) );
|
|
g_object_set( image,
|
|
"filename", filename,
|
|
"mode", mode,
|
|
NULL );
|
|
if( vips_object_build( VIPS_OBJECT( image ) ) ) {
|
|
VIPS_UNREF( image );
|
|
return( NULL );
|
|
}
|
|
|
|
return( image );
|
|
}
|
|
|
|
/**
|
|
* vips_image_new_from_file_raw:
|
|
* @filename: filename to open
|
|
* @xsize: image width
|
|
* @ysize: image height
|
|
* @bands: image bands (or bytes per pixel)
|
|
* @offset: bytes to skip at start of file
|
|
*
|
|
* This function maps the named file and returns a #VipsImage you can use to
|
|
* read it.
|
|
*
|
|
* It returns an 8-bit image with @bands bands. If the image is not 8-bit, use
|
|
* im_copy_set() to transform the descriptor after loading it.
|
|
*
|
|
* See also: im_copy_set(), im_raw2vips(), vips_image_new_from_file().
|
|
*
|
|
* Returns: the new #VipsImage, or %NULL on error.
|
|
*/
|
|
VipsImage *
|
|
vips_image_new_from_file_raw( const char *filename,
|
|
int xsize, int ysize, int bands, int offset )
|
|
{
|
|
VipsImage *image;
|
|
|
|
image = VIPS_IMAGE( g_object_new( VIPS_TYPE_IMAGE, NULL ) );
|
|
g_object_set( image,
|
|
"filename", filename,
|
|
"mode", "a",
|
|
"width", xsize,
|
|
"height", ysize,
|
|
"bands", bands,
|
|
"sizeof_header", offset,
|
|
NULL );
|
|
if( vips_object_build( VIPS_OBJECT( image ) ) ) {
|
|
VIPS_UNREF( image );
|
|
return( NULL );
|
|
}
|
|
|
|
return( image );
|
|
}
|
|
|
|
/**
|
|
* vips_image_new_from_memory:
|
|
* @buffer: start of memory area
|
|
* @xsize: image width
|
|
* @ysize: image height
|
|
* @bands: image bands (or bytes per pixel)
|
|
* @bandfmt: image format
|
|
*
|
|
* This function wraps an #IMAGE around a memory buffer. VIPS does not take
|
|
* responsibility for the area of memory, it's up to you to make sure it's
|
|
* freed when the image is closed. See for example #VipsObject::close.
|
|
*
|
|
* See also: im_binfile(), im_raw2vips(), vips_image_new().
|
|
*
|
|
* Returns: the new #VipsImage, or %NULL on error.
|
|
*/
|
|
VipsImage *
|
|
vips_image_new_from_memory( void *buffer,
|
|
int xsize, int ysize, int bands, VipsBandFormat bandfmt )
|
|
{
|
|
VipsImage *image;
|
|
|
|
image = VIPS_IMAGE( g_object_new( VIPS_TYPE_IMAGE, NULL ) );
|
|
g_object_set( image,
|
|
"filename", vips_image_temp_name(),
|
|
"mode", "m",
|
|
"foreign_buffer", buffer,
|
|
"width", xsize,
|
|
"height", ysize,
|
|
"bands", bands,
|
|
"format", bandfmt,
|
|
NULL );
|
|
if( vips_object_build( VIPS_OBJECT( image ) ) ) {
|
|
VIPS_UNREF( image );
|
|
return( NULL );
|
|
}
|
|
|
|
return( image );
|
|
}
|
|
|
|
static void
|
|
vips_image_new_temp_cb( VipsImage *image )
|
|
{
|
|
g_assert( image->filename );
|
|
|
|
g_unlink( image->filename );
|
|
}
|
|
|
|
/**
|
|
* vips_image_new_disc_temp:
|
|
* @format: format of file
|
|
*
|
|
* Make a "w" disc #VipsImage which will be automatically unlinked when it is
|
|
* destroyed. @format is something like "%s.v" for a vips file.
|
|
*
|
|
* The file is created in the temporary directory, see vips__temp_name().
|
|
*
|
|
* See also: vips__temp_name().
|
|
*
|
|
* Returns: the new #VipsImage, or %NULL on error.
|
|
*/
|
|
VipsImage *
|
|
vips_image_new_disc_temp( const char *format )
|
|
{
|
|
char *name;
|
|
VipsImage *image;
|
|
|
|
if( !(name = vips__temp_name( format )) )
|
|
return( NULL );
|
|
|
|
if( !(image = vips_image_new_from_file( name, "w" )) ) {
|
|
g_free( name );
|
|
return( NULL );
|
|
}
|
|
g_free( name );
|
|
|
|
/* Needs to be postclose so we can rewind after write without
|
|
* deleting the file.
|
|
*/
|
|
g_signal_connect( image, "postclose",
|
|
G_CALLBACK( vips_image_new_temp_cb ), NULL );
|
|
|
|
return( image );
|
|
}
|
|
|
|
/**
|
|
* vips_image_isMSBfirst:
|
|
* @image: image to test
|
|
*
|
|
* Return %TRUE if @image is in most-significant-
|
|
* byte first form. This is the byte order used on the SPARC
|
|
* architecture and others.
|
|
*/
|
|
gboolean
|
|
vips_image_isMSBfirst( VipsImage *image )
|
|
{
|
|
if( image->magic == VIPS_MAGIC_SPARC )
|
|
return( 1 );
|
|
else
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_isfile:
|
|
* @image: image to test
|
|
*
|
|
* Return %TRUE if @image represents a file on disc in some way.
|
|
*/
|
|
gboolean vips_image_isfile( VipsImage *image )
|
|
{
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_MMAPIN:
|
|
case VIPS_IMAGE_MMAPINRW:
|
|
case VIPS_IMAGE_OPENOUT:
|
|
case VIPS_IMAGE_OPENIN:
|
|
return( 1 );
|
|
|
|
case VIPS_IMAGE_PARTIAL:
|
|
case VIPS_IMAGE_SETBUF:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
case VIPS_IMAGE_NONE:
|
|
return( 0 );
|
|
|
|
default:
|
|
g_assert( FALSE );
|
|
return( 0 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* vips_image_ispartial:
|
|
* @image: image to test
|
|
*
|
|
* Return %TRUE if @im represents a partial image (a delayed calculation).
|
|
*/
|
|
gboolean
|
|
vips_image_ispartial( VipsImage *image )
|
|
{
|
|
if( image->dtype == VIPS_IMAGE_PARTIAL )
|
|
return( 1 );
|
|
else
|
|
return( 0 );
|
|
}
|
|
|
|
/* Get the image ready for writing. This can get called many
|
|
* times. Used by vips_image_generate() and vips_image_write_line(). vips7
|
|
* compat can call this as im_setupout().
|
|
*/
|
|
int
|
|
vips__image_write_prepare( VipsImage *image )
|
|
{
|
|
g_assert( vips_object_sanity( VIPS_OBJECT( image ) ) );
|
|
|
|
if( image->Xsize <= 0 ||
|
|
image->Ysize <= 0 ||
|
|
image->Bands <= 0 ) {
|
|
vips_error( "VipsImage", "%s", _( "bad dimensions" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
/* We don't use this, but make sure it's set in case any old programs
|
|
* are expecting it.
|
|
*/
|
|
image->Bbits = vips_format_sizeof( image->BandFmt ) << 3;
|
|
|
|
if( image->dtype == VIPS_IMAGE_PARTIAL ) {
|
|
VIPS_DEBUG_MSG( "vips__image_write_prepare: "
|
|
"old-style output for %s\n", image->filename );
|
|
|
|
image->dtype = VIPS_IMAGE_SETBUF;
|
|
}
|
|
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_MMAPINRW:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
break;
|
|
|
|
case VIPS_IMAGE_SETBUF:
|
|
/* Allocate memory.
|
|
*/
|
|
if( !image->data )
|
|
if( !(image->data = vips_malloc( NULL,
|
|
VIPS_IMAGE_SIZEOF_IMAGE( image ))) )
|
|
return( -1 );
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_OPENOUT:
|
|
if( vips_image_open_output( image ) )
|
|
return( -1 );
|
|
|
|
break;
|
|
|
|
default:
|
|
vips_error( "VipsImage", "%s", _( "bad image descriptor" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_write_line:
|
|
* @image: image to write to
|
|
* @ypos: vertical position of scan-line to write
|
|
* @linebuffer: scanline of pixels
|
|
*
|
|
* Write a line of pixels to an image. This function must be called repeatedly
|
|
* with @ypos increasing from 0 to @YSize -
|
|
* @linebuffer must be VIPS_IMAGE_SIZEOF_LINE() bytes long.
|
|
*
|
|
* See also: vips_image_generate().
|
|
*
|
|
* Returns: 0 on success, or -1 on error.
|
|
*/
|
|
int
|
|
vips_image_write_line( VipsImage *image, int ypos, PEL *linebuffer )
|
|
{
|
|
int linesize = VIPS_IMAGE_SIZEOF_LINE( image );
|
|
|
|
/* Is this the start of eval?
|
|
*/
|
|
if( ypos == 0 ) {
|
|
vips__image_write_prepare( image );
|
|
vips_image_preeval( image );
|
|
}
|
|
|
|
/* Possible cases for output: FILE or SETBUF.
|
|
*/
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_SETBUF:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
memcpy( VIPS_IMAGE_ADDR( image, 0, ypos ),
|
|
linebuffer, linesize );
|
|
break;
|
|
|
|
case VIPS_IMAGE_OPENOUT:
|
|
/* Don't use ypos for this.
|
|
*/
|
|
if( vips__write( image->fd, linebuffer, linesize ) )
|
|
return( -1 );
|
|
break;
|
|
|
|
default:
|
|
vips_error( "VipsImage",
|
|
_( "unable to output to a %s image" ),
|
|
VIPS_ENUM_STRING( VIPS_TYPE_DEMAND_STYLE,
|
|
image->dtype ) );
|
|
return( -1 );
|
|
}
|
|
|
|
/* Trigger evaluation callbacks for this image.
|
|
*/
|
|
vips_image_eval( image, image->Xsize, 1 );
|
|
if( vips_image_get_kill( image ) )
|
|
return( -1 );
|
|
|
|
/* Is this the end of eval?
|
|
*/
|
|
if( ypos == image->Ysize - 1 ) {
|
|
vips_image_posteval( image );
|
|
if( vips_image_written( image ) )
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/* Rewind an output file.
|
|
*/
|
|
static int
|
|
vips_image_rewind_output( VipsImage *image )
|
|
{
|
|
#ifdef DEBUG_IO
|
|
printf( "vips_image_rewind_output: %s\n", image->filename );
|
|
#endif/*DEBUG_IO*/
|
|
|
|
/* Free any resources the image holds and reset to a base
|
|
* state.
|
|
*/
|
|
vips_object_rewind( VIPS_OBJECT( image ) );
|
|
|
|
/* And reopen .. recurse to get a mmaped image.
|
|
*/
|
|
g_object_set( image,
|
|
"mode", "r",
|
|
NULL );
|
|
if( vips_object_build( VIPS_OBJECT( image ) ) ) {
|
|
vips_error( "VipsImage",
|
|
_( "auto-rewind for %s failed" ),
|
|
image->filename );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_wio_input:
|
|
* @image: image to transform
|
|
*
|
|
* Check that an image is readable via the VIPS_IMAGE_ADDR() macro, that is,
|
|
* that the entire image is in memory and all pixels can be read with
|
|
* VIPS_IMAGE_ADDR().
|
|
*
|
|
* If it
|
|
* isn't, try to transform it so that VIPS_IMAGE_ADDR() can work.
|
|
*
|
|
* See also: vips_image_wio_output(), vips_image_pio_input(),
|
|
* vips_image_inplace(), VIPS_IMAGE_ADDR().
|
|
*
|
|
* Returns: 0 on succeess, or -1 on error.
|
|
*/
|
|
int
|
|
vips_image_wio_input( VipsImage *image )
|
|
{
|
|
VipsImage *t1;
|
|
|
|
g_assert( vips_object_sanity( VIPS_OBJECT( image ) ) );
|
|
|
|
#ifdef DEBUG_IO
|
|
printf( "vips_image_wio_input: wio input for %s\n",
|
|
image->filename );
|
|
#endif/*DEBUG_IO*/
|
|
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_SETBUF:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
/* Should have been written to.
|
|
*/
|
|
if( !image->data ) {
|
|
vips_error( "vips_image_wio_input",
|
|
"%s", _( "no image data" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_MMAPIN:
|
|
case VIPS_IMAGE_MMAPINRW:
|
|
/* Can read from all these, in principle anyway.
|
|
*/
|
|
break;
|
|
|
|
case VIPS_IMAGE_PARTIAL:
|
|
#ifdef DEBUG_IO
|
|
printf( "vips_image_wio_input: "
|
|
"converting partial image to WIO\n" );
|
|
#endif/*DEBUG_IO*/
|
|
|
|
/* Change to VIPS_IMAGE_SETBUF. First, make a memory
|
|
* buffer and copy into that.
|
|
*/
|
|
if( !(t1 = vips_image_new( "t" )) )
|
|
return( -1 );
|
|
if( im_copy( image, t1 ) ) {
|
|
g_object_unref( t1 );
|
|
return( -1 );
|
|
}
|
|
|
|
/* Copy new stuff in. We can't unref and free stuff, as this
|
|
* would kill of lots of regions and cause dangling pointers
|
|
* elsewhere.
|
|
*/
|
|
image->dtype = VIPS_IMAGE_SETBUF;
|
|
image->data = t1->data;
|
|
t1->data = NULL;
|
|
|
|
/* Close temp image.
|
|
*/
|
|
g_object_unref( t1 );
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_OPENIN:
|
|
#ifdef DEBUG_IO
|
|
printf( "vips_image_wio_input: "
|
|
"converting openin image for wio input\n" );
|
|
#endif/*DEBUG_IO*/
|
|
|
|
/* just mmap() the whole thing.
|
|
*/
|
|
if( vips_mapfile( image ) )
|
|
return( -1 );
|
|
image->data = image->baseaddr + image->sizeof_header;
|
|
image->dtype = VIPS_IMAGE_MMAPIN;
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_OPENOUT:
|
|
/* Close file down and reopen as input. I guess this will only
|
|
* work for vips files?
|
|
*/
|
|
if( vips_image_rewind_output( image ) ||
|
|
vips_image_wio_input( image ) )
|
|
return( -1 );
|
|
|
|
break;
|
|
|
|
default:
|
|
vips_error( "vips_image_wio_input",
|
|
"%s", _( "image not readable" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_wio_output:
|
|
* @image: image to check
|
|
*
|
|
* Check that an image is writeable by vips_image_write_line(). If it isn't,
|
|
* try to transform it so that vips_image_write_line() can work.
|
|
*
|
|
* See also: vips_image_wio_input().
|
|
*
|
|
* Returns: 0 on succeess, or -1 on error.
|
|
*/
|
|
int
|
|
vips_image_wio_output( VipsImage *image )
|
|
{
|
|
#ifdef DEBUG_IO
|
|
printf( "vips_image_wio_output: WIO output for %s\n",
|
|
image->filename );
|
|
#endif/*DEBUG_IO*/
|
|
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_PARTIAL:
|
|
/* Make sure nothing is attached.
|
|
*/
|
|
if( image->generate ) {
|
|
vips_error( "vips_image_wio_output",
|
|
"%s", _( "image already written" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
/* Cannot do old-style write to PARTIAL. Turn to SETBUF.
|
|
*/
|
|
image->dtype = VIPS_IMAGE_SETBUF;
|
|
|
|
/* Fall through to SETBUF case.
|
|
*/
|
|
|
|
case VIPS_IMAGE_SETBUF:
|
|
if( image->data ) {
|
|
vips_error( "vips_image_wio_output",
|
|
"%s", _( "image already written" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_OPENOUT:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
/* Can write to this ok.
|
|
*/
|
|
break;
|
|
|
|
default:
|
|
vips_error( "vips_image_wio_output",
|
|
"%s", _( "image not writeable" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_inplace:
|
|
* @image: image to make read-write
|
|
*
|
|
* Gets @image ready for an in-place operation, such as im_insertplace().
|
|
* Operations like this both read and write with VIPS_IMAGE_ADDR().
|
|
*
|
|
* See also: im_insertplace(), vips_image_wio_input().
|
|
*
|
|
* Returns: 0 on succeess, or -1 on error.
|
|
*/
|
|
int
|
|
vips_image_inplace( VipsImage *image )
|
|
{
|
|
/* Do an vips_image_wio_input(). This will rewind, generate, etc.
|
|
*/
|
|
if( vips_image_wio_input( image ) )
|
|
return( -1 );
|
|
|
|
/* Look at the type.
|
|
*/
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_SETBUF:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
case VIPS_IMAGE_MMAPINRW:
|
|
/* No action necessary.
|
|
*/
|
|
break;
|
|
|
|
case VIPS_IMAGE_MMAPIN:
|
|
/* Try to remap read-write.
|
|
*/
|
|
if( vips_remapfilerw( image ) )
|
|
return( -1 );
|
|
|
|
break;
|
|
|
|
default:
|
|
vips_error( "vips_image_inplace",
|
|
"%s", _( "bad file type" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_pio_input:
|
|
* @image: image to check
|
|
*
|
|
* Check that an image is readable with vips_region_prepare() and friends.
|
|
* If it isn't, try to transform the image so that vips_region_prepare() can
|
|
* work.
|
|
*
|
|
* See also: vips_image_pio_output(), vips_region_prepare().
|
|
*
|
|
* Returns: 0 on succeess, or -1 on error.
|
|
*/
|
|
int
|
|
vips_image_pio_input( VipsImage *image )
|
|
{
|
|
g_assert( vips_object_sanity( VIPS_OBJECT( image ) ) );
|
|
|
|
#ifdef DEBUG_IO
|
|
printf( "vips_image_pio_input: enabling partial input for %s\n",
|
|
image->filename );
|
|
#endif /*DEBUG_IO*/
|
|
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_SETBUF:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
/* Should have been written to.
|
|
*/
|
|
if( !image->data ) {
|
|
vips_error( "vips_image_pio_input",
|
|
"%s", _( "no image data" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
/* Should be no generate functions now.
|
|
*/
|
|
image->start = NULL;
|
|
image->generate = NULL;
|
|
image->stop = NULL;
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_PARTIAL:
|
|
/* Should have had generate functions attached.
|
|
*/
|
|
if( !image->generate ) {
|
|
vips_error( "vips_image_pio_input",
|
|
"%s", _( "no image data" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_MMAPIN:
|
|
case VIPS_IMAGE_MMAPINRW:
|
|
case VIPS_IMAGE_OPENIN:
|
|
break;
|
|
|
|
case VIPS_IMAGE_OPENOUT:
|
|
|
|
/* Free any resources the image holds and reset to a base
|
|
* state.
|
|
*/
|
|
if( vips_image_rewind_output( image ) )
|
|
return( -1 );
|
|
|
|
break;
|
|
|
|
default:
|
|
vips_error( "vips_image_pio_input",
|
|
"%s", _( "image not readable" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_image_pio_output:
|
|
* @image: image to check
|
|
*
|
|
* Check that an image is writeable with vips_image_generate(). If it isn't,
|
|
* try to transform the image so that vips_image_generate() can work.
|
|
*
|
|
* See also: vips_image_pio_input().
|
|
*
|
|
* Returns: 0 on succeess, or -1 on error.
|
|
*/
|
|
int
|
|
vips_image_pio_output( VipsImage *image )
|
|
{
|
|
#ifdef DEBUG_IO
|
|
printf( "vips_image_pio_output: enabling partial output for %s\n",
|
|
image->filename );
|
|
#endif /*DEBUG_IO*/
|
|
|
|
switch( image->dtype ) {
|
|
case VIPS_IMAGE_SETBUF:
|
|
if( image->data ) {
|
|
vips_error( "vips_image_pio_output",
|
|
"%s", _( "image already written" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_PARTIAL:
|
|
if( image->generate ) {
|
|
vips_error( "im_poutcheck",
|
|
"%s", _( "image already written" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
break;
|
|
|
|
case VIPS_IMAGE_OPENOUT:
|
|
case VIPS_IMAGE_SETBUF_FOREIGN:
|
|
break;
|
|
|
|
default:
|
|
vips_error( "vips_image_pio_output",
|
|
"%s", _( "image not writeable" ) );
|
|
return( -1 );
|
|
}
|
|
|
|
return( 0 );
|
|
}
|
|
|
|
/**
|
|
* vips_band_format_isint:
|
|
* @format: format to test
|
|
*
|
|
* Return %TRUE if @format is one of the integer types.
|
|
*/
|
|
gboolean
|
|
vips_band_format_isint( VipsBandFormat format )
|
|
{
|
|
switch( format ) {
|
|
case VIPS_FORMAT_UCHAR:
|
|
case VIPS_FORMAT_CHAR:
|
|
case VIPS_FORMAT_USHORT:
|
|
case VIPS_FORMAT_SHORT:
|
|
case VIPS_FORMAT_UINT:
|
|
case VIPS_FORMAT_INT:
|
|
return( TRUE );
|
|
|
|
case VIPS_FORMAT_FLOAT:
|
|
case VIPS_FORMAT_DOUBLE:
|
|
case VIPS_FORMAT_COMPLEX:
|
|
case VIPS_FORMAT_DPCOMPLEX:
|
|
return( FALSE );
|
|
|
|
default:
|
|
g_assert( 0 );
|
|
return( -1 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* vips_band_format_isuint:
|
|
* @format: format to test
|
|
*
|
|
* Return %TRUE if @format is one of the unsigned integer types.
|
|
*/
|
|
gboolean
|
|
vips_band_format_isuint( VipsBandFormat format )
|
|
{
|
|
switch( format ) {
|
|
case VIPS_FORMAT_UCHAR:
|
|
case VIPS_FORMAT_USHORT:
|
|
case VIPS_FORMAT_UINT:
|
|
return( 1 );
|
|
|
|
case VIPS_FORMAT_INT:
|
|
case VIPS_FORMAT_SHORT:
|
|
case VIPS_FORMAT_CHAR:
|
|
case VIPS_FORMAT_FLOAT:
|
|
case VIPS_FORMAT_DOUBLE:
|
|
case VIPS_FORMAT_COMPLEX:
|
|
case VIPS_FORMAT_DPCOMPLEX:
|
|
return( 0 );
|
|
|
|
default:
|
|
g_assert( 0 );
|
|
return( -1 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* vips_band_format_isfloat:
|
|
* @format: format to test
|
|
*
|
|
* Return %TRUE if @format is one of the float types.
|
|
*/
|
|
gboolean
|
|
vips_band_format_isfloat( VipsBandFormat format )
|
|
{
|
|
switch( format ) {
|
|
case VIPS_FORMAT_FLOAT:
|
|
case VIPS_FORMAT_DOUBLE:
|
|
return( 1 );
|
|
|
|
case VIPS_FORMAT_UCHAR:
|
|
case VIPS_FORMAT_CHAR:
|
|
case VIPS_FORMAT_USHORT:
|
|
case VIPS_FORMAT_SHORT:
|
|
case VIPS_FORMAT_UINT:
|
|
case VIPS_FORMAT_INT:
|
|
case VIPS_FORMAT_COMPLEX:
|
|
case VIPS_FORMAT_DPCOMPLEX:
|
|
return( 0 );
|
|
|
|
default:
|
|
g_assert( 0 );
|
|
return( -1 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* vips_band_format_iscomplex:
|
|
* @format: format to test
|
|
*
|
|
* Return %TRUE if @fmt is one of the complex types.
|
|
*/
|
|
gboolean
|
|
vips_band_format_iscomplex( VipsBandFormat format )
|
|
{
|
|
switch( format ) {
|
|
case VIPS_FORMAT_COMPLEX:
|
|
case VIPS_FORMAT_DPCOMPLEX:
|
|
return( 1 );
|
|
|
|
case VIPS_FORMAT_UCHAR:
|
|
case VIPS_FORMAT_CHAR:
|
|
case VIPS_FORMAT_USHORT:
|
|
case VIPS_FORMAT_SHORT:
|
|
case VIPS_FORMAT_UINT:
|
|
case VIPS_FORMAT_INT:
|
|
case VIPS_FORMAT_FLOAT:
|
|
case VIPS_FORMAT_DOUBLE:
|
|
return( 0 );
|
|
|
|
default:
|
|
g_assert( 0 );
|
|
return( -1 );
|
|
}
|
|
}
|