使用 Graphics.DrawImage 时如何保持 Http 处理程序中图像的透明度?
我有一系列需要即时裁剪的 GIF,我在 C# 中使用 HTTP 处理程序,这样我就可以更好地封装代码 - 为结果提供缓存等。
目前,当我将现有图像绘制到通过 Graphics
对象生成的新 Image
所有透明度都会丢失。
我尝试了各种技术来尝试保持透明度,但无济于事。
我尝试过的事情:
- 使用
MakeTransparent (Color)
方法调用 - 将
ImageAttriutes
与ColorMap
和SetColorKey
组合使用code>
我真的不想开始使用不安全的运算符或 Win32 调用。
有任何想法吗?
I've got a series of GIFs that I need to crop on the fly, I'm using a HTTP Handler in C# so I can better encapsulate the code - provide caching for the result etc.
Currently, when I draw the existing image to a new Image
via the Graphics
object all the transparency is lost.
I've tried various techniques to try and maintain the transparency, but to no avail.
Things I've tried:
- Using the
MakeTransparent (Color)
method call - Using the
ImageAttriutes
with a combination ofColorMap
andSetColorKey
I don't really want to start using unsafe operators or Win32 calls.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这似乎已经得到解答 如何使用 System.Drawing 绘制透明图像。画画?
This seems to have been answered already How do you Draw Transparent Image using System.Drawing?
当我使用透明度时,我总是使用位图。 即,
当然,如果您无法离开
Graphics
对象,那么这可能没有多大用处。When I have used transparency I've always used
Bitmap
. I.e.Of course if you cannot move away from the
Graphics
object then that may not be of much use.