Search found 2 matches

by darkside
2018-11-02T00:03:46-07:00
Forum: Magick.NET
Topic: Create tiles like deepzoom/tile format, 256x256 sized
Replies: 2
Views: 7230

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...
by darkside
2018-11-01T04:42:29-07:00
Forum: Magick.NET
Topic: Create tiles like deepzoom/tile format, 256x256 sized
Replies: 2
Views: 7230

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?