.NET     Console.WriteLine( "All Things .NET" );
.NET Nerd Blog Home
9.20.2003

 
Graphics on the Fly in ASP.NET
From MSDN, and seen other places as well.
Here's my attempt at it: Show me the time in IMAGE format

ASP.NET: Create Snazzy Web Charts and Graphics On the Fly with the .NET Framework -- MSDN Magazine, February 2002
	int width = 400;

int height = 40;
Bitmap bm = new Bitmap(width, height);
Graphics gr = Graphics.FromImage(bm);

gr.FillRectangle(new SolidBrush(Color.Teal), 0, 0, width, height);

Font fontBanner = new Font("Verdana", 16, FontStyle.Bold );
gr.DrawString( strInput, fontBanner, new SolidBrush( Color.White ),
new Rectangle( 0, 0, width, height ) );

Response.ContentType = "image/jpeg";
bm.Save( Response.OutputStream, ImageFormat.Jpeg );


keywords: graphics fly dynamic jpeg jpg response stream


9.16.2003

 
DataGrid Girl


 
Displaying 2 DataTables in 1 DataGrid
Displaying 2 DataTables in 1 DataGrid (uses Merge - look into this further)



Powered by Blogger