Create tiles like deepzoom/tile format, 256x256 sized
Create tiles like deepzoom/tile format, 256x256 sized
I have a huge TIF file (12000x58000 px). I am needing to convert it to a deepzoom/tile format, 256x256 sized tiles. Is this possible using Magick.NET?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Create tiles like deepzoom/tile format, 256x256 sized
ImageMagick supports tiled pyramid TIFF. See defines for TIFF at https://imagemagick.org/script/formats.php
Re: Create tiles like deepzoom/tile format, 256x256 sized
I found this : Read all the jpg images from the directory, convert them to 256x256 tiles, compress jpeg and create the pyramid tif in another directory
for %%f in (c:\image\jpg\*.jpg) do ( convert "%%f" -define tiff:tile-geometry=256x256 -compress jpeg ptif:c:\image\ptif\%%~nf.tif )
I need to convert this code for Magick.NET but I can't convert. How can I use it for Magick.NET?
for %%f in (c:\image\jpg\*.jpg) do ( convert "%%f" -define tiff:tile-geometry=256x256 -compress jpeg ptif:c:\image\ptif\%%~nf.tif )
I need to convert this code for Magick.NET but I can't convert. How can I use it for Magick.NET?