mirror of https://github.com/GNOME/gimp.git
Bug 669616 - openraster plugin saves invalid files under some circumstances
If the label contains an URL, the double slashes (//) make very poor filenames inside the ZIP container. http://forum.intilinux.com/mypaint-help-and-tips/gimp-corrupting-ora-files/msg10284/#msg10284
This commit is contained in:
parent
3d4c7f8d4b
commit
08ed48fffc
|
@ -129,10 +129,10 @@ def save_ora(img, drawable, filename, raw_filename):
|
||||||
return layer
|
return layer
|
||||||
|
|
||||||
# save layers
|
# save layers
|
||||||
for lay in img.layers:
|
for i, lay in enumerate(img.layers):
|
||||||
x, y = lay.offsets
|
x, y = lay.offsets
|
||||||
opac = lay.opacity / 100.0 # needs to be between 0.0 and 1.0
|
opac = lay.opacity / 100.0 # needs to be between 0.0 and 1.0
|
||||||
add_layer(x, y, opac, lay, 'data/%s.png' % lay.name.decode('utf-8'), lay.visible)
|
add_layer(x, y, opac, lay, 'data/%03d.png' % i, lay.visible)
|
||||||
|
|
||||||
# save thumbnail
|
# save thumbnail
|
||||||
w, h = img.width, img.height
|
w, h = img.width, img.height
|
||||||
|
|
Loading…
Reference in New Issue