Ok with this it works. But resizing is still very slow. And it would be nice if i could do this in one command/Batch script! convert 7296.jpg \ \( +clone -resize 100% -write thumb_1.jpg +delete \) \ \( +clone -resize 75% -write thumb_2.jpg +delete \) \ \( +clone -resize 50% -write thumb_3.jpg ...
Thansk for your answer… This works for me: convert 7296.jpg -crop 1024x1024 -set filename:tile "%[fx:page.y/1024]_%[fx:page.x/1024]" 0_%[filename:tile].jpg No i need to resize all Images in a loop and than slice these Thumbnails: Example: Original.jpg = 7296x5472px First i need to resize this full I ...
Hi, i need to slice an image. For example: full.jpg = 7296x5472 1 slice = max. 1024x1024px At the moment i use this command: convert -crop 1024x1024 full.jpg %d.jpg With this i got imagename like: 1.jpg 2.jpg … But i need the name with row and column index. For example: First row: 0_1.jpg 0_2.jpg … ...