Shims Posted July 15, 2003 Posted July 15, 2003 Is there anyway to lay text on top of an image in a windows app and save it all as an image? Quote Stress is directly associated with programming. But if I keep moving on to new stresses, then I am doing my job correctly!
*Experts* mutant Posted July 15, 2003 *Experts* Posted July 15, 2003 You could create a graphics object from an image and then draw to it and save. Dim GR As Graphics = Graphics.FromImage(PictueBox1.Image) GR.DrawString("SOME TEXT", New Font("Tahoma", 72), New SolidBrush(Color.Blue), 100, 100) PictureBox1.Image.Save("imagepath") This is assuming your image is in a picturebox but you can change it to any Image object. Quote
Shims Posted July 15, 2003 Author Posted July 15, 2003 you are the f-ing MAN!!! Quote Stress is directly associated with programming. But if I keep moving on to new stresses, then I am doing my job correctly!
Shims Posted July 15, 2003 Author Posted July 15, 2003 by the way, do you just know all this stuff off hand or what kind of resource do you use? Quote Stress is directly associated with programming. But if I keep moving on to new stresses, then I am doing my job correctly!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.