text on image
-
hi , how to display text on image or how to merge two images? thanks in adv
-
hi , how to display text on image or how to merge two images? thanks in adv
Within a website ? I guess you float the text on top of the image. Merging two images, I think is possible with SVG, but that is not part of ASP.NET. Did you mean to ask how to do this on a website ? Where are the images coming from ?
Christian Graus Driven to the arms of OSX by Vista.
-
hi , how to display text on image or how to merge two images? thanks in adv
ratnakar_ravi wrote:
how to display text on image
just Explore System,Graphics Namespace. I am sure there are some methods to which will fulfill your requirment. Few time ago , i have done the same thing.
ratnakar_ravi wrote:
how to merge two images?
I didn't get your point. Do you need it a asp.net web page ?
cheers, Abhijit
-
Within a website ? I guess you float the text on top of the image. Merging two images, I think is possible with SVG, but that is not part of ASP.NET. Did you mean to ask how to do this on a website ? Where are the images coming from ?
Christian Graus Driven to the arms of OSX by Vista.
thanks for rply i want to display my website logo(image or text) on image. here all images are in images folder and iamges called with query.and on that particular images which is called,i want to diaplay my website logo. thanks in adv
-
thanks for rply i want to display my website logo(image or text) on image. here all images are in images folder and iamges called with query.and on that particular images which is called,i want to diaplay my website logo. thanks in adv
You can write a HTTP handler that adds your watermark to all images requested from the DB. Then you're asking a simple GDI+ question, how to draw an image transparently over another. The ImageAttributes class is what you need, google that for lots of examples. You can use a color range to draw transparently, on your logo.
Christian Graus Driven to the arms of OSX by Vista.