Search found 2 matches

by Madani
2019-04-08T05:24:27-07:00
Forum: Users
Topic: cropped files named by column and row
Replies: 2
Views: 3685

Re: cropped files named by column and row

Cheers, got it.

Magick convert big.png -crop 256x256 -set filename:f "%[fx:page.x/256]%/-%[fx:page.y/256]" +repage +adjoin "6-%[filename:f].gif"
by Madani
2019-04-08T04:06:24-07:00
Forum: Users
Topic: cropped files named by column and row
Replies: 2
Views: 3685

cropped files named by column and row

Greetings – newbie using ImageMagick-7.0.8-39-Q16-x64, Windows 10. I need a large png (16384pixels-wide) split into 256 pixel-wide pngs. That much is working just fine with; Magick convert -crop 256x256 large.png 6-%d.gif However I need the filenames to be the column and row position in a 64x64 tile ...