473,387 Members | 1,573 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Can you render and image in ASP.NET?

Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars
Nov 19 '05 #1
9 1470
What do you mean? The browser renders the images, the server just provides
the path in the form of HTML.

"Lars Netzel" <tr*****@apa.se> wrote in message
news:#p*************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars

Nov 19 '05 #2
No I mean dynamically creating images.. for example images that needs
language support and stuff like that. I heared a long time ago abot usoem
GIF creator that was part of .NET but I've never seen it...

/lars
"Peter Rilling" <pe***@nospam.rilling.net> skrev i meddelandet
news:er**************@TK2MSFTNGP12.phx.gbl...
What do you mean? The browser renders the images, the server just
provides
the path in the form of HTML.

"Lars Netzel" <tr*****@apa.se> wrote in message
news:#p*************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars


Nov 19 '05 #3
> Is there any possibility to render images for the web in asp.net?

Yup.
Is it hard?
Not for me. Probably for some people. I can't speak for them.
Is there something built in or do I need external commercial components?
Everything you need is in the CLR. The System.Drawing and
System.Drawing.Imaging namespaces contain all the functionality you need,
combined with, of course, ASP.Net classes.

The first thing you need to do is define what you want to render. If you
want to open an image from a file, or if you want to draw one dynamically.

You would need to create an ASPX page that serves as the "image." You would
link to it as you would any other image, with an HTML image tag. The ASPX
page then creates the image (however), sets the Response.ContentType to
"image/jpg" (or whatever image type you're returning), and then saves the
image to the Response.OutputStream.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Lars Netzel" <tr*****@apa.se> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl... Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars

Nov 19 '05 #4
Hi Lars,

There's lots you can do with System.Graphics to create images in memory in
ASP.NET:

http://aspalliance.com/articleViewer.aspx?aId=400&pId=1

http://authors.aspalliance.com/chris...agecounter.asp

Ken

"Lars Netzel" <tr*****@apa.se> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars


Nov 19 '05 #5
Hi...

Yes, you can create an image dynamically in ASP.NET. It's fairly straight forward as well.

The idea is to create an image in memory on the server and stream it back to the client (browser). Now, *if* you were to write that image to disk, you could insert an <img> tag in the output stream and provide a link back to the newly created image that you saved off; however, since you want to send the image bytes back to the browser, you will need an <img> tag in the page HTML whose source is the ASPX page that constructs the image. For example:

<html>
This is some text.
<img src="genImage.aspx">
Isn't that a pretty picture?
</html>

Now, the genImage.aspx code simply uses the System.Drawing, etc. to render an image. Here is a simple example from a sample project I have:

From genImage.aspx:
private void Page_Load(object sender, System.EventArgs e) {
Bitmap objBitmap = new Bitmap(200, 200);
Graphics g = Graphics.FromImage(objBitmap);
g.FillEllipse(Brushes.Red, 0, 0, 200, 200);
objBitmap.Save(Response.OutStrean, ImageFormat.Gif);
}

That's it. You have the full power of the .NET drawing and image libraries at your disposal and can generate as complex an image as you can dream up.

Enjoy...

John Puopolo

"Lars Netzel" <tr*****@apa.se> wrote in message news:%2***************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars

Nov 19 '05 #6
Nice, thanx!

/Lars

"John Puopolo" <jo**********@fastsearch.com.nospam> skrev i meddelandet
news:OB**************@tk2msftngp13.phx.gbl...
Hi...

Yes, you can create an image dynamically in ASP.NET. It's fairly straight
forward as well.

The idea is to create an image in memory on the server and stream it back to
the client (browser). Now, *if* you were to write that image to disk, you
could insert an <img> tag in the output stream and provide a link back to
the newly created image that you saved off; however, since you want to send
the image bytes back to the browser, you will need an <img> tag in the page
HTML whose source is the ASPX page that constructs the image. For example:

<html>
This is some text.
<img src="genImage.aspx">
Isn't that a pretty picture?
</html>

Now, the genImage.aspx code simply uses the System.Drawing, etc. to render
an image. Here is a simple example from a sample project I have:

From genImage.aspx:
private void Page_Load(object sender, System.EventArgs e) {
Bitmap objBitmap = new Bitmap(200, 200);
Graphics g = Graphics.FromImage(objBitmap);
g.FillEllipse(Brushes.Red, 0, 0, 200, 200);
objBitmap.Save(Response.OutStrean, ImageFormat.Gif);
}

That's it. You have the full power of the .NET drawing and image libraries
at your disposal and can generate as complex an image as you can dream up.

Enjoy...

John Puopolo

"Lars Netzel" <tr*****@apa.se> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars


Nov 19 '05 #7
Thank you, that example got me started quite fast... great!

/Lars
"Ken Cox [Microsoft MVP]" <BA************@sympatico.ca> skrev i meddelandet
news:%2****************@TK2MSFTNGP14.phx.gbl...
Hi Lars,

There's lots you can do with System.Graphics to create images in memory in
ASP.NET:

http://aspalliance.com/articleViewer.aspx?aId=400&pId=1

http://authors.aspalliance.com/chris...agecounter.asp

Ken

"Lars Netzel" <tr*****@apa.se> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars

Nov 19 '05 #8
Do I need to have this in an Aspx page? Is there other ways to call for the picture? I want to do this all in one class.

I guess the ContentType is pretty important but I'm wanting to do an output from a WebControl that also generates the picture. That means I won't have any aspx page avaliable.

/Lars
"John Puopolo" <jo**********@fastsearch.com.nospam> skrev i meddelandet news:OB**************@tk2msftngp13.phx.gbl...
Hi...

Yes, you can create an image dynamically in ASP.NET. It's fairly straight forward as well.

The idea is to create an image in memory on the server and stream it back to the client (browser). Now, *if* you were to write that image to disk, you could insert an <img> tag in the output stream and provide a link back to the newly created image that you saved off; however, since you want to send the image bytes back to the browser, you will need an <img> tag in the page HTML whose source is the ASPX page that constructs the image. For example:

<html>
This is some text.
<img src="genImage.aspx">
Isn't that a pretty picture?
</html>

Now, the genImage.aspx code simply uses the System.Drawing, etc. to render an image. Here is a simple example from a sample project I have:

From genImage.aspx:
private void Page_Load(object sender, System.EventArgs e) {
Bitmap objBitmap = new Bitmap(200, 200);
Graphics g = Graphics.FromImage(objBitmap);
g.FillEllipse(Brushes.Red, 0, 0, 200, 200);
objBitmap.Save(Response.OutStrean, ImageFormat.Gif);
}

That's it. You have the full power of the .NET drawing and image libraries at your disposal and can generate as complex an image as you can dream up.

Enjoy...

John Puopolo

"Lars Netzel" <tr*****@apa.se> wrote in message news:%2***************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars

Nov 19 '05 #9
Remember that on thg client, its all HTML. The main point is that you need
an image tag that points to the ASPX page that generates the image. It
doesn't matter if that image tag is in a Control or any other element in an
ASPX page. And, of course, you can request the ASPX page that generates the
image all by itself, just as you would request an image from a web server
all by itself.

In other words, you treat the ASPX page that generates the image as if it
WERE an image, in whatever context you use it. To the browser, it will BE an
image, due to the Response.ContentType.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Lars Netzel" <tr*****@apa.se> wrote in message
news:es****************@TK2MSFTNGP09.phx.gbl...
Do I need to have this in an Aspx page? Is there other ways to call for the
picture? I want to do this all in one class.

I guess the ContentType is pretty important but I'm wanting to do an output
from a WebControl that also generates the picture. That means I won't have
any aspx page avaliable.

/Lars
"John Puopolo" <jo**********@fastsearch.com.nospam> skrev i meddelandet
news:OB**************@tk2msftngp13.phx.gbl...
Hi...

Yes, you can create an image dynamically in ASP.NET. It's fairly straight
forward as well.

The idea is to create an image in memory on the server and stream it back
to the client (browser). Now, *if* you were to write that image to disk,
you could insert an <img> tag in the output stream and provide a link back
to the newly created image that you saved off; however, since you want to
send the image bytes back to the browser, you will need an <img> tag in the
page HTML whose source is the ASPX page that constructs the image. For
example:

<html>
This is some text.
<img src="genImage.aspx">
Isn't that a pretty picture?
</html>

Now, the genImage.aspx code simply uses the System.Drawing, etc. to render
an image. Here is a simple example from a sample project I have:

From genImage.aspx:
private void Page_Load(object sender, System.EventArgs e) {
Bitmap objBitmap = new Bitmap(200, 200);
Graphics g = Graphics.FromImage(objBitmap);
g.FillEllipse(Brushes.Red, 0, 0, 200, 200);
objBitmap.Save(Response.OutStrean, ImageFormat.Gif);
}

That's it. You have the full power of the .NET drawing and image
libraries at your disposal and can generate as complex an image as you can
dream up.

Enjoy...

John Puopolo

"Lars Netzel" <tr*****@apa.se> wrote in message
news:%2***************@TK2MSFTNGP12.phx.gbl...
Hey!

Is there any possibility to render images for the web in asp.net? Is it
hard? Is there something built in or do I need external commercial
components?

best regards
/Lars

Nov 19 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Leif K-Brooks | last post by:
I'm considering writing a fairly basic vector drawing program using PyGTK. What's the best way to render it? What I'm thinking of is having everything render on a PIL image, then display that in...
4
by: lkrubner | last post by:
I'd like to write a PHP script to be used from the command line on a Unix machine. I'd like for the script to put together a string, turn it into a web page, print it, then return control the...
2
by: Jeronimo Bertran | last post by:
I have an aspx page that shows a complex image with several objects that are sensitive to mouseover events. The information about the objects in the image is obtained from a database and complex...
5
by: localhost | last post by:
I have a custom TrueType .ttf font in the filesystem (not installed) on the web server. I want to take the letter "A" from this font, render it as an image, and return that as a byte stream in...
4
by: André | last post by:
Hi, I try to create and render a graphic among other objects like e.g. tables, labels, buttons. The tables are not a problem, neither the graphic. My problem is that i can't render both...
1
by: | last post by:
I've built an application that scrapes JPG images of webpages and PDF instances of those webpages automatically from an RSS feed. References to the scraped resources are persisted to our database....
8
by: Edward Diener | last post by:
Is there a way in Javascript, or perhaps in HTML, to force a browser to re-render an image on an HTML page after a round-trip between the client and the server ? In my particular case, the image...
2
by: =?Utf-8?B?UmljaA==?= | last post by:
On my development machine where I have Visual Studio 2005 loaded, I have an app that uses the Report control. I can view data in report format with the Report control -- the data renders OK in the...
4
by: Ken Fine | last post by:
I've been living with a frustrating issue with VS.NET for some months now and I need to figure out what the problem is. Hopefully someone has run into the same issue and can suggest a fix. I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.