notes on vips-properties changes
This commit is contained in:
parent
bb29f80b44
commit
591d4472a9
@ -42,6 +42,7 @@
|
|||||||
- resize/reduce*/shrink*/affine now round output size to nearest rather than
|
- resize/reduce*/shrink*/affine now round output size to nearest rather than
|
||||||
rounding down, thanks ioquatix
|
rounding down, thanks ioquatix
|
||||||
- better support for tile overlaps in google maps mode in dzsave
|
- better support for tile overlaps in google maps mode in dzsave
|
||||||
|
- dzsave puts vips-properties.xml in the main dir for gm and zoomify layouts
|
||||||
|
|
||||||
19/8/16 started 8.3.4
|
19/8/16 started 8.3.4
|
||||||
- better transparency handling in gifload, thanks diegocsandrim
|
- better transparency handling in gifload, thanks diegocsandrim
|
||||||
|
9
TODO
9
TODO
@ -25,15 +25,6 @@
|
|||||||
vips_image_get: field "rad-colcor-b" not found
|
vips_image_get: field "rad-colcor-b" not found
|
||||||
vips_image_get: field "rad-prims-rx" not found
|
vips_image_get: field "rad-prims-rx" not found
|
||||||
|
|
||||||
- add test for google layout
|
|
||||||
|
|
||||||
need to check case where width is exactly correct and we have overlaps
|
|
||||||
|
|
||||||
- arrayjoin puts some shim down the far right edge, though not along the
|
|
||||||
bottom
|
|
||||||
|
|
||||||
see untile-google.py
|
|
||||||
|
|
||||||
- not sure about utf8 error messages on win
|
- not sure about utf8 error messages on win
|
||||||
|
|
||||||
- strange:
|
- strange:
|
||||||
|
@ -65,6 +65,8 @@
|
|||||||
* - add @compression option
|
* - add @compression option
|
||||||
* 5/9/16
|
* 5/9/16
|
||||||
* - more overlap changes to help gmaps mode
|
* - more overlap changes to help gmaps mode
|
||||||
|
* 8/9/16 Felix Bünemann
|
||||||
|
* - move vips-properties out of subdir for gm and zoomify layouts
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -959,6 +961,9 @@ write_vips_meta( VipsForeignSaveDz *dz )
|
|||||||
if( !(dump = vips__make_xml_metadata( class->nickname, save->ready )) )
|
if( !(dump = vips__make_xml_metadata( class->nickname, save->ready )) )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
|
/* For deepzom the props must go inside the ${name}_files subdir, for
|
||||||
|
* gm and zoomify it can sit in the main folder.
|
||||||
|
*/
|
||||||
if( dz->layout == VIPS_FOREIGN_DZ_LAYOUT_DZ )
|
if( dz->layout == VIPS_FOREIGN_DZ_LAYOUT_DZ )
|
||||||
out = vips_gsf_path( dz->tree,
|
out = vips_gsf_path( dz->tree,
|
||||||
"vips-properties.xml", dz->root_name, NULL );
|
"vips-properties.xml", dz->root_name, NULL );
|
||||||
|
Loading…
Reference in New Issue
Block a user