Search found 2 matches
- 2017-11-28T12:45:19-07:00
- Forum: Users
- Topic: Convert TIFFs from LZW to ZIP format in PowerShell
- Replies: 4
- Views: 6032
Re: Convert TIFFs from LZW to ZIP format in PowerShell
ImageMagick command line
convert image.tif -compress zip image.tif
see http://www.imagemagick.org/script/command-line-options.php#compress
If using ImageMagick 7, then change convert to magick.
How would you iterate through a list of tiffs? I tried
magick *.tif -compress zip *.tif
and ...
- 2017-11-28T11:38:54-07:00
- Forum: Users
- Topic: Convert TIFFs from LZW to ZIP format in PowerShell
- Replies: 4
- Views: 6032
Convert TIFFs from LZW to ZIP format in PowerShell
I'm running PowerShell script that downloads a collection of tiff files and uploads them to an image repository as a nightly process. Currently, the tiff files use LZW format, and the program that exports them doesn't give an option for their output compression in ZIP format. The image repository ...