punith8626 wrote:
I have tiff files in one folder where I need to generate thumbs for those multi tiff file.
Some TIFF files have extension .tif and some have .tiff
When I try to execute this command:
Code: Select all
nconvert -out png -resize 87 112 -xall -o C:\thumbs\%.png C:\tiff\*.tif
It converts both .tiff and .tif files in windows server 2008, but in windows server 2012 it will
convert only for .tif files.
Is there any setup needs to be done for server 2012 so that same command works for both .tif and .tiff files ?
I can't answer your question regarding Windows Server 2012, and I don't know if anyone on the forum is likely to be able to, but there may be a simple work-around you can use.
NConvert accepts multiple inputs listed at the end of the command line, so you might test this code:
Code: Select all
nconvert -out png -resize 87 112 -xall -o C:\thumbs\%.png C:\tiff\*.tif C:\tiff\*.tiff
Edit:
The NConvert help file only lists .tiff as a supported file format, although .tif works in my tests on Windows 7...
