| View previous topic :: View next topic |
| Author |
Message |
hexstar Newbie
Joined: 17 Apr 2004 Posts: 1 Location: Internet
|
Posted: Apr 17th, 2004 01:46 PM Post subject: adding text to images |
|
|
How can I make a program that will allow you to open an image (I already have this part done), and then allow me to add text to it, then save the image (again, I already have saving the image done, haven't tested it though)?
Thanks! |
|
| Back to top |
|
P.T.A.M. Administrator

Joined: 08 Oct 2003 Posts: 752 Location: Greece
|
Posted: Apr 17th, 2004 05:35 PM Post subject: |
|
|
Welcome
[vb:1:ccfdebf328]Picture1.AutoRedraw = True
Picture1.AutoSize = True
Picture1.Picture = LoadPicture("FileName")
Picture1.CurrentX = 100
Picture1.CurrentY = 100
Picture1.Print "testing"
SavePicture Picture1.Image, "C:\test.bmp"[/vb:1:ccfdebf328] _________________ No one is completely useless. They can at least be an example of what to avoid. |
|
| Back to top |
|
Gilad_r Centurion
Joined: 03 Mar 2004 Posts: 156
|
|
| Back to top |
|
|