Commit 7e2c3d49 authored by Jérome Perrin's avatar Jérome Perrin

explain how convert creates some files in current directory

parent 5e07a647
...@@ -334,6 +334,8 @@ class Image(TextConvertableMixin, File, OFSImage): ...@@ -334,6 +334,8 @@ class Image(TextConvertableMixin, File, OFSImage):
parameter_list.append('-') parameter_list.append('-')
if format: if format:
# png:- will write on stdout after converting to png
# xxxpng:- will write to a file named xxxpng:- in current directory
parameter_list.append('%s:-' % format) parameter_list.append('%s:-' % format)
else: else:
parameter_list.append('-') parameter_list.append('-')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment