Path in batchfiles to pictures
Posted: 2010-01-12T12:30:07-07:00
				
				Hello!
I have write two batchfiles with ImageMagick commands.
This work for me!
But - When I add a path to the filename
I get the following error message:
convert: option requires an argument '-level' @ convert.c/ConvertImageCommand/1708.
Can I choose the library for the infile and outfile in ImageMagick?
//Jan
			I have write two batchfiles with ImageMagick commands.
This work for me!
Code: Select all
convert thumbnail.gif -matte -virtual-pixel transparent -channel A -blur 0x8 -level 0,50% +channel soft_edge.pngCode: Select all
convert "c:\temp\pic\thumbnail.gif" -matte -virtual-pixel transparent -channel A -blur 0x8 -level 0,50% +channel "c:\temp\pic\soft_edge.png"convert: option requires an argument '-level' @ convert.c/ConvertImageCommand/1708.
Can I choose the library for the infile and outfile in ImageMagick?
//Jan