Merge pull request #464 from felixbuenemann/dzsave-fix-vips-properties-duplicate-path
Fix dzsave vips-properties path for non-dz layout
This commit is contained in:
commit
bb29f80b44
@ -959,8 +959,12 @@ 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 );
|
||||||
|
|
||||||
out = vips_gsf_path( dz->tree,
|
if( dz->layout == VIPS_FOREIGN_DZ_LAYOUT_DZ )
|
||||||
"vips-properties.xml", dz->root_name, NULL );
|
out = vips_gsf_path( dz->tree,
|
||||||
|
"vips-properties.xml", dz->root_name, NULL );
|
||||||
|
else
|
||||||
|
out = vips_gsf_path( dz->tree, "vips-properties.xml", NULL );
|
||||||
|
|
||||||
gsf_output_write( out, strlen( dump ), (guchar *) dump );
|
gsf_output_write( out, strlen( dump ), (guchar *) dump );
|
||||||
(void) gsf_output_close( out );
|
(void) gsf_output_close( out );
|
||||||
g_object_unref( out );
|
g_object_unref( out );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user