Search found 3 matches
- 2016-04-19T07:33:47-07:00
- Forum: Users
- Topic: Composite image
- Replies: 4
- Views: 4260
Re: Composite image
Thanks!
- 2016-04-19T02:50:45-07:00
- Forum: Users
- Topic: Composite image
- Replies: 4
- Views: 4260
Re: Composite image
After more testing it appears using vertical value above 50 for -splice for forum_page.png starts to cut off bottom part of image, like canvas height is only 100px. Solved issue by adding -extent to each image to match it with canvas dimensions: convert -background transparent \ forum_link.png ...
- 2016-04-19T02:03:03-07:00
- Forum: Users
- Topic: Composite image
- Replies: 4
- Views: 4260
Composite image
I'm trying to create a simple sprite from 3 images using command line. I resize each image, then splice to move it to specific coordinates and composite to merge them. This code works convert -background transparent \ forum_link.png -resize '50x50!' -splice 50x0 -extent 200x100 \ \( forum_read.png ...