"Christophe Leconte" on  wrote...
| Hello mailing list,
| 
| I am a beginner with imagemagick
| 
| I can resize images, crop. but I can't do this (which I do with coreldraw) :
| 
| http://www.leconte.name/christophe.jpg
| 
| how to do a transparent strip and write on "christophe" ? I search but all i 
| do fail ... snif
| 
| could you help me ?
| 
| Thank you.
| 

I hope you mean semi-transparent strip ON TOP of the jpg image
as jpeg images can not save any form of transparent colors.

As for how... See IM Examples, Annotation
  http://www.cit.gu.edu.au/~anthony/graphics/imagick6/annotating/#label_on

For a semi-transparent white use...

    convert dragon.jpg \
            -fill '#FFF8' -draw 'rectangle 5,128,114,145' \
            -fill black   -annotate +10+141 'Faerie Dragon' \
            label_dim_draw_white.jpg

And use the same colors for the other examples.


  Anthony Thyssen ( System Programmer )    <[EMAIL PROTECTED]>
 -----------------------------------------------------------------------------
   I always figured that if I ever stopped learning, it would
   either mean that I had closed my mind, or that I was dead.
                          -- Robert Asprin  ``Myth-nomers and Im-pervections''
 -----------------------------------------------------------------------------
     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