Click here to Skip to main content
6,595,854 members and growing! (18,734 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Intermediate

Web Graphics On The Fly in ASP.NET

By Nick Parker

Create web graphics on the fly with the ASP.NET quickly.
C#, VB.NET 1.0, Win2K, WinXP, ASP.NET, Visual Studio, Dev
Posted:12 Feb 2002
Updated:25 Nov 2002
Views:258,810
Bookmarked:106 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
26 votes for this article.
Popularity: 6.05 Rating: 4.28 out of 5
2 votes, 13.3%
1
1 vote, 6.7%
2
1 vote, 6.7%
3
5 votes, 33.3%
4
6 votes, 40.0%
5

Sample Image - ASP.NET_Web_Graphics.jpg

Introduction

We all know what it is like when it comes to creating graphics for the web. Mind you, I find this to be a very tedious job, in fact many times I will try to avoid it. There have been other ways to create graphics on the fly, in fact you may wish to read an article written on VML posted here at The Code Project.

While there is nothing wrong using this or any other method available we all know the future ( at least in Microsoft�s eyes) is .NET. With that said, I would like to show you a method for creating dynamic graphics for the web in ASP.NET. Keep in mind that all of the following code will be done in VB.NET & C# as well.

To Begin

The use of namespaces is vital in the .NET environment. We must import the proper namespaces to allow us to access the methods and properties we call in the following code below. I have updated this article to include the C# version of the code, you will notice how very similar they are.

�=====================================
�Include All Pertinent Namespaces Here
�=====================================

<%@ Page Language="VB" ContentType="image/jpeg" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Text" %>
<%@ Import Namespace="System.Drawing.Imaging" %>
<%@ Import Namespace="System.Drawing.Drawing2D" %>

	<%

	Response.Clear( )
	Dim height As Integer = 100
	Dim width As Integer = 200
	Dim r As New Random
	Dim x  As Integer = r.Next(75)

	Dim bmp As new Bitmap(width, height, PixelFormat.Format24bppRgb)
	Dim g as Graphics = Graphics.FromImage(bmp)
	
	g.TextRenderingHint = TextRenderingHint.AntiAlias
	g.Clear(Color.Orange)
	g.DrawRectangle(Pens.White, 1, 1, width-3, height-3)
	g.DrawRectangle(Pens.Gray, 2, 2, width-3, height-3)
	g.DrawRectangle(Pens.Black, 0, 0, width, height)
	g.DrawString("The Code Project", _
			New Font("Arial", 12, FontStyle.italic), _
			SystemBrushes.WindowText, New PointF(x,50))


	bmp.Save(Response.OutputStream, ImageFormat.Jpeg)
	g.Dispose( )
	bmp.Dispose( )
	Response.End( )
	
	%>

C# Version

<%@ Page Language="C#" ContentType="image/jpeg" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Text" %>
<%@ Import Namespace="System.Drawing.Imaging" %>
<%@ Import Namespace="System.Drawing.Drawing2D" %>

	<%

	Response.Clear();
	int height = 100;
	int width = 200;
	Random r = new Random();
	int x = r.Next(75);

	Bitmap bmp = new Bitmap(width, height, PixelFormat.Format24bppRgb);
	Graphics g = Graphics.FromImage(bmp);
	
	g.TextRenderingHint = TextRenderingHint.AntiAlias;
	g.Clear(Color.Orange);
	g.DrawRectangle(Pens.White, 1, 1, width-3, height-3);
	g.DrawRectangle(Pens.Gray, 2, 2, width-3, height-3);
	g.DrawRectangle(Pens.Black, 0, 0, width, height);
	g.DrawString("The Code Project", new Font("Arial", 12, FontStyle.Italic), 
	SystemBrushes.WindowText, new PointF(x,50) );

	bmp.Save(Response.OutputStream, ImageFormat.Jpeg);
	g.Dispose();
	bmp.Dispose();
	Response.End();
	
	%>

Code Explanation

While there is not a lot to this code I would like to explain what is going on here. To begin we clear the Response object. The variables height and width are defined as the dimensions of our image, you can adjust as you wish or create a subroutine where you pass these values in. So far this is rather rudimentary, nothing extremely extensive so far. Next we will declare a variable r to be of type Random. The integer variable x on the next line is assigned a random value using r with a seed value of 75, you can use whatever seed value you would like.

The next two objects that we create will be new for any ASP web developers. First we are to create a new Bitmap object, this item will define the area to which we are doing our drawing on. There are three arguments that are passed to it, the width and height of our image and the pixel format. There are a series of different pixel formats to choose from, here is a detailed explanation of the different types available to you.

Next we will use the graphics object to set the TextRenderingHint to TextRenderingHint.AntiAlias. This allow us to take advantage of antialiasing characteristics when displaying fonts. Antialiasing allows you to get ride of jagged lines in your text by blending shades of gray or color around the text to make it appear smoother.

On the next line we are actually setting the main color of our bitmap image. I choose Code Project orange for this example :). In the next three lines we are actually going to begin drawing on our image. The method that gets called is the same, only changing a few of the parameters. We are actually just drawing a framework at the edge of the image. Essentially you can see that by the points being specified in the arguments list. Here is a breakdown of how the DrawRectangle works; keep in mind the x and y coordinates are in terms of the upper left hand corner:

g.DrawRectangle( [Pen],[x],[y],[width],[height] )	
Next we will actually draw some text onto our Bitmap object. The DrawString method is overloaded and takes a series of arguments that are specified like this for my example:
g.DrawString( [String],[Font], ,[PointF] )
For the first time we will go ahead and make a direct method call using the Bitmap object. The method to save our bitmap is simply Save which is overloaded (big surprise) passing the outputstream object and image format. Here is another list of options you have in regards to your image format.

There have been questions regarding the next two lines of code, I am calling the Dispose method for both the Graphics object and Bitmap object that we created. Even though .NET development can manage our object(s) with respect to garbage collection, it is always a good idea to clear these items when you know you are done with them. You can exclude these two calls and garbage collection will still take place, it's your call.

Conclusion

That�s all it takes to create dynamic graphics through the use of code alone.

Other Articles

Article on MSDN entitled: Create Snazzy Web Charts and Graphics On the Fly with the .NET Framework.

Update History

  • February 13th, 2002 - Original article is posted.
  • July 18th, 2002 - Updated to include code explanation section.
  • November 25th, 2002 - Updated to include C# code example.
  • November 26th, 2002 - Updated to allow AntiAlias to work properly thanks to leppie.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Nick Parker


Member
Nick graduated from Iowa State University with a B.S. in Management Information System and a minor in Computer Science. Nick works for GeoLearning.

Nick has also been involved with the Iowa .NET User Group since it's inception, in particular giving presentations over various .NET topics. Nick was recently awarded the Visual C# MVP award from Microsoft.

In his mystical spare time he is working on a development project called "DeveloperNotes" which integrates into Visual Studio .NET allowing developers easy access to common code pieces. He is also a fan of using dynamically typed languages to perform unit testing, not to mention how he loves to talk about himself in the third person.
Occupation: Software Developer (Senior)
Location: United States United States

Other popular ASP.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 35 (Total in Forum: 35) (Refresh)FirstPrevNext
Question588KB or 588B? PinmemberDolary22:07 12 Sep '06  
QuestionValidation: Element 'html' occurs too few times. PinmemberThaNerd9:58 16 Nov '05  
AnswerRe: Validation: Element 'html' occurs too few times. PinmemberHeywood Jablowme18:27 23 Jan '06  
GeneralCan this code write as a Custom Control Pinmemberyovio23:19 8 Jan '04  
GeneralRe: Can this code write as a Custom Control PineditorNick Parker4:15 10 Jan '04  
GeneralGraphics as part of page PinmemberAndre van der Graaf10:12 20 Dec '02  
GeneralRe: Graphics as part of page PineditorNick Parker10:16 20 Dec '02  
GeneralRe: Graphics as part of page PinmemberHeath Stewart22:44 18 Jan '03  
GeneralRe: Graphics as part of page PinmemberAndre van der Graaf9:41 22 Jan '03  
GeneralRe: Graphics as part of page Pinmemberroze_love4:37 14 Sep '04  
Generalcode rendering on the .aspx page!? Pinmembercronosxfiles13:39 30 Nov '02  
GeneralRe: code rendering on the .aspx page!? PineditorNick Parker17:45 1 Dec '02  
GeneralRe: Compilation errors :( Pinmembercronosxfiles5:21 9 Dec '02  
GeneralRe: Compilation errors :( PineditorNick Parker9:12 9 Dec '02  
GeneralRe: Compilation errors :( Pinmembercronosxfiles13:42 9 Dec '02  
GeneralCross Selling PinmemberSimonS21:44 25 Nov '02  
GeneralRe: Cross Selling PineditorNick Parker2:13 26 Nov '02  
GeneralUsing a templated background image Pinmemberleppie5:39 10 Nov '02  
GeneralRe: Using a templated background image PineditorNick Parker9:38 11 Nov '02  
GeneralRe: Using a templated background image Pinmemberleppie9:57 11 Nov '02  
GeneralRe: Using a templated background image PineditorNick Parker10:07 11 Nov '02  
GeneralRe: Using a templated background image Pinmemberleppie11:16 11 Nov '02  
GeneralRe: Using a templated background image Pinmemberleppie10:59 26 Nov '02  
GeneralRe: Using a templated background image PineditorNick Parker12:24 26 Nov '02  
GeneralRe: Using a templated background image PineditorNick Parker13:45 26 Nov '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 25 Nov 2002
Editor: Chris Maunder
Copyright 2002 by Nick Parker
Everything else Copyright © CodeProject, 1999-2009
Web13 | Advertise on the Code Project