pknowles/cropall

Error: no resize specified. Not resizing

stueja opened this issue · 2 comments

The error can be avoided by replacing line 392

c += " -resize \"" + str(resize_width) + "x" + str(resize_height) + ">\""

against

		if (resize_width > 0):
			c += " -resize \"" + str(resize_width) + "x" + str(resize_height) + ">\""
		c += " \"" + os.path.join(self.outDir, self.currentName) + "\""