I want to draw text on JPEG and save it in file. But me need that this picture didn't visible.
Please help me!
Thanks In Advance!

You need to load the image into an Image object and then do one of these

Graphics g=null ;
            g = Graphics.FromImage(image.Image);

With that you can do all kinds of things, drawLine, drawText. And then just save it again.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.