Search found 2 matches

by amcleod
2015-04-07T09:03:43-07:00
Forum: Users
Topic: How to get row/column info in tile filenames?
Replies: 2
Views: 3369

Re: How to get row/column info in tile filenames?

Thank you so much for your help. The documentation on escapes begins to make more sense with your example before me. I eventually ended up with #!/bin/bash /usr/bin/convert bigimage.jpg -crop 256x256 \ -set filename:tile "%[fx:page.x/256+1001]_%[fx:page.y/256+1001]" \ +repage +adjoin "...
by amcleod
2015-04-06T23:14:39-07:00
Forum: Users
Topic: How to get row/column info in tile filenames?
Replies: 2
Views: 3369

How to get row/column info in tile filenames?

I'm working with largish images (up to 12000x12000 pixels) and want to break them up into tiles. I've been using: convert -crop 256x256 bigimage.jpg tiled_%06d.jpg which does the job fine. But while the tile names contain sequence numbers, it would be very convenient if the names indicated the row a...