Hi,
How can I write a semi transparent text on an Image (Jpg,Bmp), or a transparent text (color as same background Image) but with a shadow, something I want to do to watermark the images.
I want to accomplish that using Delphi win32.
|
1
|
Hi, How can I write a semi transparent text on an Image (Jpg,Bmp), or a transparent text (color as same background Image) but with a shadow, something I want to do to watermark the images. I want to accomplish that using Delphi win32.
|
|||
|
|
|
|
I presume what you're trying to accomplish is a little more complicated than simply writing text with a transparent background; i.e. you are trying to get some form of alpha-blended text written on the image. |
||
|
|
|
|
One option is to use the AlphaBlend function in Windows.pas unit. Something like this will produce semi-transparent text (with a drop shadow - building on Jim McKeeth's response) overlayed on an image:
|
||
|
|
|
|
The shadow is easy:
This is text with a transparent background. Or did you want the text itself to be simi-transparent? That is a little trickier. You would need to draw it manually. An easy way to do it instead would be to sample the average of the color of the area you are writing on the image. Then set your font color to be a little lighter and your shadow to be a little darker. Then it kind of blends in. |
||||
|
|
|
i haven't tested it but it'll give you some idea where to go. the key is the brush style. something like this:
|
||||||
|
|
|
You could use the bitblt routines to merge an image to a common canvas, then save the image again. |
||
|
|
|
Thank you for all Both Petesh and Dave Elsberry gave me the right answer,but I could only accept one answer, which I gave it to Petesh, because with GDI+ I got more control and have more than just a transparent text. |
||
|
|