#9842 single quotes in convert command are optional under Linux, Windows dont like them..
r11343 | r11356 | |
---|---|---|
83 | 83 | self.page -= 1 |
84 | 84 | # example: convert eingabe.pdf[1] -density 600x600 -resize 800x560 PNG:'ausgabe.png' |
85 | cmd= "convert %s[%s] -scale %s PNG: | |
85 | cmd= "convert %s[%s] -scale %s PNG:%s/%s.png" \ | |
86 | 86 | % (self.pdfinput , self.page, self.width, self.images_folder,self.filenamehash) |
87 | 87 | ret = os.system(cmd) |