如何在.NET中生成GIF图像?

时间:2008-12-08 18:17:09

标签: .net image gif image-generation

我是否可以使用.NET库以编程方式生成我自己的GIF图像?

至少我想逐像素地构建它。更好的是支持文本和形状。

这是我正在尝试做的一个例子。我在Photoshop中嘲笑了这个...

Number line graphic http://img143.imageshack.us/img143/5458/dollarlineot9.gif

你推荐什么?

8 个答案:

答案 0 :(得分:12)

Bitmap bmp = new Bitmap(xSize, ySize, PixelFormat.Format32bppArgb);
using (Graphics g = Graphics.FromImage(bmp)) {
  // Use g and/or bmp to set pixels, draw lines, show text, etc...
}
bmp.Save(filename, ImageFormat.Gif);

完成工作

答案 1 :(得分:4)

请注意,除bmp.Save(filename, ImageFormat.Gif);方法外,还有一个bmp.Save(stream, ImageFormat.Gif);,可让您创建&将图像输出到网页,无需将其保存到服务器硬盘。

答案 2 :(得分:2)

这是使用System.Drawing命名空间中的类开始这样做的开始。它绘制了一个带有两个方框的线,以展示对比仅仅设置像素更高级别的形状的支持。

// add a reference to System.Drawing.dll
using System;
using System.Drawing;
using System.Drawing.Imaging;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            Bitmap bmp = new Bitmap(400, 100);

            using (Graphics g = Graphics.FromImage(bmp))
            {
                g.FillRectangle(Brushes.White, 0.0f, 0.0f, 400f, 100f);

                // draw line
                using (Pen p = new Pen(Color.Black, 1.0f))
                {
                    g.DrawLine(p, 0, 49, 399, 49);
                }

                // Draw boxes at start and end
                g.FillRectangle(Brushes.Blue, 0, 47, 5, 5);
                g.FillRectangle(Brushes.Blue, 394, 47, 5, 5);
            }


            bmp.Save("test.gif", ImageFormat.Gif);
            bmp.Dispose();
        }
    }
}

答案 3 :(得分:1)

为什么不使用System.Drawing命名空间?你需要的一切都应该在那里。

答案 4 :(得分:1)

如何使用HTTPHandler创建图像并在流中发送(使用此处已发布的图像代码)的示例。

使用:

<img src="createChart.ashx?data=1"/>

代码:

public class CreateChart : IHttpHandler
{
     public void ProcessRequest(HttpContext context)
     {
        string data = context.QueryString["data"]; // Or get it from a POST etc

        Bitmap image = new Bitmap(xSize, ySize, PixelFormat.Format32bppArgb);
        using (Graphics g = Graphics.FromImage(Image)) 
        {
           // Use g to set pixels, draw lines, show text, etc...
        }
        BinaryStream s = new BinaryStream();

        image.Save(s, ImageFormat.Gif);

        context.Response.Clear();
        context.Response.ContentType = "image/gif";
        context.Response.BinaryWrite(s);
        context.Response.End();
     }

     public bool IsReusable { get { return false; } }
}

答案 5 :(得分:0)

为什么不使用图表控件而不是尝试生成GIF?除非严格要求生成此特定GIF,否则我认为使用图表控件可为您提供更大的灵活性。

答案 6 :(得分:0)

我喜欢my company's products。您将能够读取/写入GIF并从整个布料创建它们。对于桌面应用程序,它是运行时免版税的许可证,用于服务器。

答案 7 :(得分:0)

Generating Images On-the-Fly with ASP.NET(2002年2月22日)作者:Stephen Walther