如何在 .NET 中旋转图像并将其作为 PNG 输出到客户端?
我有一个 .aspx 文件,它使用以下方法输出图像:
Server.MapPath("somefile.png")
Response.ContentType = "image/png";
Response.WriteFile(fileURI);
我有一个函数,可以将图像旋转 0-360 度并将其作为位图返回。
我怎样才能获取这个内存中的位图,然后将其以 PNG 格式写到客户端?
I have an .aspx file that outputs an image using the following methods:
Server.MapPath("somefile.png")
Response.ContentType = "image/png";
Response.WriteFile(fileURI);
I have a function that rotates the image by 0-360 degrees and returns it as a bitmap.
How can I take this in-memory bitmap and then write it out to the client as a PNG?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)