"John Smith" on  wrote...
|  Ah thank you Fred & Anthony!  I believe my problem getting close to
| being solved.... & BTW the quality isssue is a non-issue.  Turns out I
| had some muck in the image, and was mis-reading them.  All looks good
| there :]
| 
| .... but, I am struggling with these commands still.  Again to re-cap, I
| have two images with transparent backgrounds I wish to join.  It seems
| using either of these commands fails to generate a joined image retaining
| the transparent quality... it is joined however, and the dimensions are
| all correct, but loss of transparency in the output. :[
| 
| this is what I am using.
| 
| convert image_one.png image_two.png +append output.png
| 
| and also tried,
| 
| convert image_one.png image_two.png -matte -channel RGBA +append
| output.png
| 
| Thank you Fred & Anthony for helping me figure this one out.  :)
| 
I think I know what is going on...

the Append like -flatten -mosiac -border etc etc etc all create a new
canvas onto which to compose the images given.

The problem is the canvas has to be created with some color.

For -append that canvas is created with the -background color
so that is what you is the areas that were not 'Copy' overlaid by
the append operation.

Try
  convert image_one.png image_two.png \
          -background none +append output.png

See IM examples, Layers of Multiple Images, Append
   http://imagemagick.org/Usage/layers/#append

The first example did not have any problem as all the images are all the
same height.

Later examples show how -background is used by append. and how you can
fudge a center aligned append, until some type of justification setting
is added to IM.


  Anthony Thyssen ( System Programmer )    <[EMAIL PROTECTED]>
 -----------------------------------------------------------------------------
   There it is;  dwarves are not heros, but a calculating folk with
   a great idea of the value of money;   -- JRR Tolkein, ``The Hobbit''
 -----------------------------------------------------------------------------
     Anthony's Home is his Castle     http://www.cit.gu.edu.au/~anthony/
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to