Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / .NET Framework / New Users / January 2006

Tip: Looking for answers? Try searching our database.

Graphics to Image

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Marco Rego - 23 Jan 2006 19:40 GMT
How do I save or transform a System.Drawing.Graphics object into an Image
object ?
What I need is to save a Graphics on which I have drawn several shapes to a
JPG or PNG file.
Thanx.

_____
Marco
Tim Wilson - 23 Jan 2006 20:43 GMT
If you're in control of the creation of the Graphics object then you can do
something like this.

Bitmap b = new Bitmap(100, 100);
Graphics g = Graphics.FromImage(b);
// Draw on the image using g.DrawEllipse(...), g.DrawLine(...), etc.
b.Save(...);
g.Dispose();
b.Dispose();

Signature

Tim Wilson
.NET Compact Framework MVP

> How do I save or transform a System.Drawing.Graphics object into an Image
> object ?
[quoted text clipped - 4 lines]
> _____
> Marco

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.