ASP.net创建一个图像

时间:2011-03-02 17:52:07

标签: c# asp.net image-processing gdi+

在这个上丢失了,我开发了一个拖放区域。

我有:

一组x,y宽度和高度的图像都是已知的 一组文本标签,全部包含x,y,fontsize,text等所有已知的

如何将其转换为图像文件,以便我可以缩略图?真的不知道从哪里开始。

2 个答案:

答案 0 :(得分:1)

创建所需大小的位图,从中获取图形实例,然后开始绘图。

Bitmap bmp = new Bitmap(height,width);
using gfx = Graphics.FromImage(bmp) {
  // then draw on the gfx instance, flush, and then save the bitmap.
  gfx.DrawString(...)//with your position information
  gfx.DrawImage(...)//with your position,font,text info
  gfx.Flush();
}
bmp.Save(...);

答案 1 :(得分:1)

请参阅下面问题的答案,其中包含动态生成缩略图的代码:

Alternatives to System.Drawing for use with ASP.NET?