Saving as a JPEG/TIFF

Rick

Newcomer
Joined
Jan 31, 2003
Messages
15
Location
Las Vegas, NV
Basically I want to create a program where the user enters a doctors name, bio and selects a picture from their hard disk. Then I need the program to be able to save the name, bio, and picture as one picture file (either JPEG or TIFF) to a preset layout.

If not, then I want to be able to save it to a Word template.

Can someone point me in the right direction?

I am using VB .NET
 
If you want to save an image object to a file then using its save method will do it:
Visual Basic:
imageobject.Save("path", System.Drawing.Imaging.ImageFormat.Tiff)
 
Back
Top