ArtVandelay
04-20-2008, 02:34 PM
Is there a way to simply append images horizontally or vertically in the GIMP?
You can do it in imagemagick like so:
convert -background "#000000" +append tmp11.png tmp12.png tmp13.png result.png
What I want is a bunch of slightly rotated images appended to each other.
The gimp has the rotation behavior I want whereas imagemagick can't seem to rotate an image without resizing it.
However, I can't figure out how to append in the GIMP as I did with
imagemagick.
Ideally, I'd like to only use a GIMP script-fu to do the whole thing
as opposed to trying to glue together functionality in a shell script.
You can do it in imagemagick like so:
convert -background "#000000" +append tmp11.png tmp12.png tmp13.png result.png
What I want is a bunch of slightly rotated images appended to each other.
The gimp has the rotation behavior I want whereas imagemagick can't seem to rotate an image without resizing it.
However, I can't figure out how to append in the GIMP as I did with
imagemagick.
Ideally, I'd like to only use a GIMP script-fu to do the whole thing
as opposed to trying to glue together functionality in a shell script.