Search found 7 matches
- 2015-03-07T18:34:09-07:00
- Forum: Users
- Topic: Advise please: Join -> Overlay -> Flatten -> Split again ?
- Replies: 11
- Views: 2295
Re: Advise please: Join -> Overlay -> Flatten -> Split again ?
Perfect. Many thanks for your help snibgo - the script and advise above has really helped me.
- 2015-03-04T10:14:14-07:00
- Forum: Users
- Topic: Advise please: Join -> Overlay -> Flatten -> Split again ?
- Replies: 11
- Views: 2295
Re: Advise please: Join -> Overlay -> Flatten -> Split again ?
Very nice - getting real close now! Thanks snibgo!
Is it possible to specify each of the output filenames separately?
Is is possible to scale one of the overlay images as part of this same command?
Is it possible to specify each of the output filenames separately?
Is is possible to scale one of the overlay images as part of this same command?
- 2015-03-04T09:22:09-07:00
- Forum: Users
- Topic: Advise please: Join -> Overlay -> Flatten -> Split again ?
- Replies: 11
- Views: 2295
Re: Advise please: Join -> Overlay -> Flatten -> Split again ?
hi snibgo, the following gives me 4 new jpegs which contain the same pixels as overlay2.png convert \ \( top-left.png top-right.png +append \) \ \( bottom-left.png bottom-right.png +append \) \ -append \ overlay1.png -composite \ overlay2.png -composite \ -quality 50 +write out1.jpg \ -quality 60 ...
- 2015-03-04T04:50:24-07:00
- Forum: Users
- Topic: Advise please: Join -> Overlay -> Flatten -> Split again ?
- Replies: 11
- Views: 2295
Re: Advise please: Join -> Overlay -> Flatten -> Split again ?
Trying to post an image here to explain my task. Preview not showing, but hopefully posting will show it.
- 2015-03-04T04:22:33-07:00
- Forum: Users
- Topic: Advise please: Join -> Overlay -> Flatten -> Split again ?
- Replies: 11
- Views: 2295
Re: Advise please: Join -> Overlay -> Flatten -> Split again ?
If you want to divide the output into 4 equal tiles, "-crop 2x2@" will do that. But I don't see why you want to append images, then chop them up again. Again, sorry Snibgo for not doing a great job of explaining my problem. Hopefully this will help... https://www.dropbox.com/s/xxx8ol7yziwrhbo ...
- 2015-03-03T19:54:42-07:00
- Forum: Users
- Topic: Advise please: Join -> Overlay -> Flatten -> Split again ?
- Replies: 11
- Views: 2295
Re: Advise please: Join -> Overlay -> Flatten -> Split again ?
Sorry for the lack of clarity in my question snibgo - actually, output files will need to overwrite the original 4 jpegs.
Thanks very much for giving me the example code - it's taking me a while to get my head around the CLI syntax. I need to go and play with this.
Kind Regards,
Jez
Thanks very much for giving me the example code - it's taking me a while to get my head around the CLI syntax. I need to go and play with this.
Kind Regards,
Jez
- 2015-03-03T17:53:44-07:00
- Forum: Users
- Topic: Advise please: Join -> Overlay -> Flatten -> Split again ?
- Replies: 11
- Views: 2295
Advise please: Join -> Overlay -> Flatten -> Split again ?
Hello ImageMagick gurus... I need some help please... I have 4 jpeg images in a base layer as follows: - 100x100 pixels: top_left.jpg - 100x100 pixels: top_right.jpg - 100x100 pixels: bottom_left.jpg - 100x100 pixels: bottom_right.jpg I have 2 transparent png's in 2 layers above: - 200x200 pixels ...