我已经制作了一个 mvc4 应用程序,并且我有一个输出 png 文件的控制器,如下所示:
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Drawing.Text;
using System.IO;
using System.Web.Mvc;
using Foobar.Classes;
namespace Foobar.Controllers
{
public class ImageController : Controller
{
public ActionResult Index(Label[] labels)
{
var bmp = new Bitmap(400, 300);
var pen = new Pen(Color.Black);
var font = new Font("arial", 20);
var g = Graphics.FromImage(bmp);
g.SmoothingMode = SmoothingMode.HighQuality;
g.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
if (labels != null)
{
g.DrawString("" + labels.Length, font, pen.Brush, 20, 20);
if (labels.Length > 0)
{
g.DrawString("" + labels[0].label, font, pen.Brush, 20, 40);
}
}
var stream = new MemoryStream();
bmp.Save(stream, ImageFormat.Png);
stream.Position = 0;
return File(stream, "image/png");
}
}
}
Label 类如下所示:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Foobar.Classes
{
public class Label
{
public string label { get; set; }
public int fontsize { get; set; }
}
}
当我在 url 中运行我的控制器时:
http://localhost:57775/image?labels[0][label]=Text+rad+1&labels[0][fontsize]=5&labels[1][fontsize]=5&labels[2][fontsize]=5
我得到了正确数量的标签,因此图像将显示 3。但 Label 的实例不会填充其数据成员。我也尝试使用普通变量(而不是属性)来做到这一点。
如果它们被填写,图像实际上会显示“3”和“Text rad 1”。
那么我应该在“标签”类中添加什么来获得正确的属性?应该有某种注释吗?
我在哪里读到这个?