动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
   .Net → 阅读文章

 .NET中的动态生成图像组件

作者来源: 
阅读 数 654 人次 , 2001-9-10 

By Steven Smith from aspalliance.com


Y'know, there's this really cool library in .NET for dynamically creating images on the fly. However, this article has nothing to do with that, so if that's what you're looking for, stop now. What this article is about is very simple -- how to use a single line of code (via a component call) to output the contents of an image residing on the server's hard drive. Why not just use an IMG tag? Well, we want this page to used as the SRC of an IMG tag, so it has to actually have a content-type of "image/gif" and use BinaryWrite to display the image. To do this in Classic ASP requires a custom component (or a third party component such as Persits ASPUpload, which has a SendBinary method that does this). In fact, let's take a look at how this works with a quick sample before we do it in .NET. Below is the complete code required to display a static image using ASPUpload. You can see this file in action by clicking here.

displayimage.asp:
1 <% OPTION EXPLICIT %>
2 <object id="objUpload" runat="server" progid="Persits.Upload.1"></object>
3 <%
4 objUpload.SendBinary Server.MapPath("/images/aspalliance_fade_468x60.gif"), True
5 %>

Now, let's do this in .NET. We can use the System.Drawing library to open an image and display it, using the following code:

displayimage.aspx:
1 <%@ Page language="c#" AutoEventWireup="false" Trace="false" Debug="false" %>
2 <% @Import Namespace="System.Drawing" %>
3 <% @Import Namespace="System.IO" %>
4 <% @Import Namespace="System.Drawing.Imaging" %>
5 <%@ OutputCache Duration="100" VaryByParam="none" %>
6 <%
7 string path;
8 path = Server.MapPath("///images//aspalliance_fade_468x60.gif");
9 System.Drawing.Image myImage = System.Drawing.Image.FromFile(path);
10
11 MemoryStream tempStream = new MemoryStream();
12 myImage.Save(tempStream,ImageFormat.Gif);
13
14 Response.ClearContent();
15 Response.ContentType = "image/gif";
16 Response.BinaryWrite(tempStream.ToArray());
17 Response.End();
18 %>

Here is the result of using this code as the SRC of an IMG tag:

Old:(Notice that there is a problem here -- this is an animated GIF, but this version doesn't show any more than the first frame of the graphic. Not good. So we'll scrap that version, hope that perhaps there is an animated GIF type supported in the future, and move on.)

As you can see, the above example renders the animated GIF image just fine now, thanks to updates to the .NET Framework in Beta2. The HTTPImage Class, below, is no longer necessary, but is left for posterity. -- Steve The HTTPImage Class -- NO LONGER FUNCTIONAL (or necessary) UNDER BETA 2

You can tell we're getting to the real thing now, because I actually bothered to put the working code into a class file. In this case, I called it HTTPImage, and it's written in C# and has two simple methods. Actually, one overloaded method, outputImageViaHTTP, which takes either a virtual file path or a static file path. Before we get into the class, let's see it in action by looking at a simple ASPX page that uses it. Click here for the example, and below is the source code. Note that the ASP.NET page is passing its own instances of Response and Server to the component (line 8). We'll see how the component uses these below.

displayimage2.aspx:
1 <%@ Page Language="c#" ContentType="image/gif" %>
2 <%@ Import Namespace="stevenator.components" %>
3 <%@ OutputCache Duration="100" VaryByParam="none" %>
4 <script language="c#" runat="server">
5 protected void Page_Load(object sender, EventArgs e)
6 {
7 HTTPImage myHTTPImage = new HTTPImage();
8 myHTTPImage.outputImageViaHTTP("//images//aspalliance_fade_468x60.gif", this.Response, this.Server);
9 }
10 </script>

Pretty cool, eh? The image is actually animated, as it's supposed to be. Now, the reason this is even remotely useful is so that if you want to show a random image, like for an ad banner, you can use this method to output the image from your file system. For example, this image tag has as its source the same file that we just looked at (it is animated to fade in about once per minute):

Ok, now we're finally ready to actually look at the class. First, here is the source code:

HTTPImage.cs:
1 namespace stevenator.components
2 {
3 using System;
4 using System.IO;
5 using System.Web;
6
7 /// <summary>
8 /// Summary description for HTTPImage.
9 /// </summary>
10 public class HTTPImage
11 {
12 public HTTPImage()
13 {
14 //
15 // TODO: Add Constructor Logic here
16 //
17 }
18
19 public void outputImageViaHTTP(string absolutePath, HttpResponse Response)
20 {
21 FileStream oFileStream;
22 long lFileSize, lStartpos = 0;
23
24 oFileStream = new FileStream(absolutePath, FileMode.Open);
25 lFileSize = oFileStream.Length;
26
27 byte[] bBuffer = new byte[(int)lFileSize];
28 oFileStream.Read(bBuffer, 0, (int)lFileSize);
29 oFileStream.Close();
30
31 Response.ClearContent();
32 Response.ContentType = "image/gif";
33
34 Response.BinaryWrite(bBuffer);
35 oFileStream.Close();
36 Response.End();
37 }
38 public void outputImageViaHTTP(string virtualPath, HttpResponse Response, HttpServerUtility Server)
39 {
40 string path;
41
42 path = Server.MapPath(virtualPath);
43
44 outputImageViaHTTP(path, Response);
45 }
46 }
47 }

As you can see, this is a pretty simple class. No frills. Let's look at the second overloaded method first, since it's simpler. On line 38 you can see the declaration. We need to pass in the a Response and a Server object from our ASP.NET page, which we saw on line 8 of displayimage2.aspx. We only need server for this second overloaded call, because we're going to use Server.MapPath to determine the absolute path to the image and then simply call the other method. Which takes us to line 19, the other method call.

We're going to use the FileStream object to access the image, and we will need to know the file's size so that we know when to stop reading and avoid an error. Lines 27 to 30 do all 90% of the work for this class, by loading the buffer with the contents of the file. Then all that remains is to set the content type to an image type (in this case, I've hardcoded it to be "image/gif", but you could make that a parameter or base it on the file extension) and then use the BinaryWrite command to output the image. The BinaryWrite command is nothing new to Classic ASP developers -- in fact, the basic concepts of this whole article are all old news for Class ASP developers, but I hadn't done this in .NET before, so I thought I'd share it with you. Hopefully it'll help a few of you get going with .NET a little faster. If you just want to plug the component in and see it work, you can download it here: HTTPImage.dllX. The download didn't like the fact that it was a dll, so remove the X from the end of the filename after you download it. You can get the C# source here.
  

 本文Tags组件  
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:比较ASP和ASP.NET中的Response.Write
· 下一篇:asp.NET中使用include
· WSDL文件详解(上)
· 一个功能完善的专栏管理的程序->这是asp.net的第二个应用(四)
· 查看服务器磁盘、文件的aspx
· 深入讲解 ASP+ 验证(一)
· 创建移动Web应用程序(1)


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077