Search found 2 matches

by chris-at
2013-11-12T02:52:56-07:00
Forum: Users
Topic: How can I add a Background Tile to a transparent Image?
Replies: 3
Views: 2101

Re: How can I add a Background Tile to a transparent Image?

Thank you, I got it working with:

Code: Select all

convert -size 4096x4096 tile:paper.png test.png -flatten result.png 
But is it possible to take the size from test.png instead?
by chris-at
2013-11-12T00:53:42-07:00
Forum: Users
Topic: How can I add a Background Tile to a transparent Image?
Replies: 3
Views: 2101

How can I add a Background Tile to a transparent Image?

I want to add a tiled background to a transparent image.

According to the docs this should do it:

convert test.png -texture paper.png result.png


I also tried other variations (with -composite, -flatten, -tile, etc.) but result.png is either still transparent or just gets a white background ...