tiffsave xres/yres args broken
the declarations for xres/yres tiff args were all wrong
This commit is contained in:
parent
3b583d7744
commit
d8000bb1b5
@ -1,4 +1,5 @@
|
|||||||
13/3/12 started 7.28.2
|
13/3/12 started 7.28.2
|
||||||
|
- xres/yres tiffsave args were broken
|
||||||
|
|
||||||
13/3/12 started 7.28.1
|
13/3/12 started 7.28.1
|
||||||
- add ICC profile read/write for png files
|
- add ICC profile read/write for png files
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
*
|
*
|
||||||
* 2/12/11
|
* 2/12/11
|
||||||
* - wrap a class around the tiff writer
|
* - wrap a class around the tiff writer
|
||||||
|
* 17/3/12
|
||||||
|
* - argh xres/yres macro was wrong
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -248,15 +250,15 @@ vips_foreign_save_tiff_class_init( VipsForeignSaveTiffClass *class )
|
|||||||
VIPS_ARG_DOUBLE( class, "xres", 16,
|
VIPS_ARG_DOUBLE( class, "xres", 16,
|
||||||
_( "Xres" ),
|
_( "Xres" ),
|
||||||
_( "Horizontal resolution in pixels/mm" ),
|
_( "Horizontal resolution in pixels/mm" ),
|
||||||
VIPS_ARGUMENT_NONE,
|
VIPS_ARGUMENT_OPTIONAL_INPUT,
|
||||||
G_STRUCT_OFFSET( VipsImage, Xres ),
|
G_STRUCT_OFFSET( VipsForeignSaveTiff, xres ),
|
||||||
-0.0, 1000000, 0 );
|
-0.0, 1000000, 0 );
|
||||||
|
|
||||||
VIPS_ARG_DOUBLE( class, "yres", 17,
|
VIPS_ARG_DOUBLE( class, "yres", 17,
|
||||||
_( "Yres" ),
|
_( "Yres" ),
|
||||||
_( "Vertical resolution in pixels/mm" ),
|
_( "Vertical resolution in pixels/mm" ),
|
||||||
VIPS_ARGUMENT_NONE,
|
VIPS_ARGUMENT_OPTIONAL_INPUT,
|
||||||
G_STRUCT_OFFSET( VipsImage, Yres ),
|
G_STRUCT_OFFSET( VipsForeignSaveTiff, yres ),
|
||||||
-0.0, 1000000, 0 );
|
-0.0, 1000000, 0 );
|
||||||
|
|
||||||
VIPS_ARG_BOOL( class, "bigtiff", 18,
|
VIPS_ARG_BOOL( class, "bigtiff", 18,
|
||||||
|
Loading…
Reference in New Issue
Block a user