asp.net – 如何使用System.Drawing绘制透明图像?

我正在尝试从.aspx页面返回透明的GIF,以便在网页中显示.我试图让图像具有透明度,但是我只是不断地将黑色变成透明的图像.

有谁知道我做错了什么?

Protected Sub Page_Load(ByVal sender As Object,ByVal e As System.EventArgs) _
  Handles Me.Load
    '' Change the response headers to output a GIF image.
    Response.Clear()
    Response.ContentType = "image/gif"

    Dim width = 110
    Dim height = width

    '' Create a new 32-bit bitmap image
    Dim b = New Bitmap(width,height)

    '' Create Grahpics object for drawing
    Dim g = Graphics.FromImage(b)

    Dim rect = New Rectangle(0,width - 1,height - 1)

    '' Fill in with Transparent
    Dim tbrush = New System.Drawing.solidBrush(Color.Transparent)
    g.FillRectangle(tbrush,rect)

    '' Draw Circle Border
    Dim bPen = Pens.Red
    g.DrawPie(bPen,rect,365)

    '' Fill in Circle
    Dim cbrush = New SolidBrush(Color.LightBlue)
    g.FillPie(cbrush,365)


    '' Clean up
    g.Flush()
    g.dispose()

    '' Make Transparent
    b.MakeTransparent()

    b.Save(Response.OutputStream,Imaging.ImageFormat.Gif)
    Response.Flush()
    Response.End()
End Sub

解决方法

不幸的是,使用Bitmap对象创建透明的Gif并不容易. (见 this KB article)

您也可以使用支持透明度的PNG格式与您正在使用的代码.

相关文章

一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....
推荐一款比较牛的富文本编辑器:http://kindeditor.net/
一、异或运算异或,英文为exclusive OR,或缩写成xor异或(x...
一、云计算概念 云计算(cloud computing)是基于互联网的相...