Re: Create fainted image for background
Fred Weinhaus <[email protected]>
| Newsgroups | gmane.comp.video.image-magick.user |
|---|---|
| Message-ID | <p06240802c75ebcc88fdb@[192.168.1.2]> |
>Hi, > >How can I create fainted images for web background? > >For example, this is what I created with gimp, >http://imagebin.ca/img/E3hw-29F.png >from a full-coloured image file, for use as background so that the >colourful image will not get in the way of letters that I write on them. > >I'm wondering if I do the same on the command line. This is just a blend of white with the image. One way is composite -blend 80 \( -size 70x46 xc:white \) rose: rose_white80pct.png another convert rose: \( +clone -threshold -1 \) -compose blend -set option:compose:args 80 rose_white80pct.png I will try to put a script together in the next few days to do all of this. Fred