向图像添加动态文本

Adding dynamic text to image

我目前有一张图片显示给用户,我正在尝试根据传入的两个参数向该图片添加动态文本。

我遇到的问题是,当我单步执行代码时,它似乎一切正常,但是当我在下面的代码 运行 之后看到屏幕上的图像时,它没有文本在上面。

下面是我当前的代码设置:

   public ActionResult GenerateImage(string savingAmount, string savingDest)
    {
        // Hardcoding values for testing purposes.
        savingAmount = "25,000.00";
        savingDest = "Canada";


        PointF firstLocation = new PointF(10f, 10f);
        PointF secondLocation = new PointF(10f, 50f);


        Image imgBackground = Image.FromFile(Server.MapPath("~/assets/img/fb-share.jpg"));

        int phWidth = imgBackground.Width; int phHeight = imgBackground.Height;

        Bitmap bmBackground = new Bitmap(phWidth, phHeight, PixelFormat.Format24bppRgb);

        bmBackground.SetResolution(72, 72);

        Graphics grBackground = Graphics.FromImage(bmBackground);

        Bitmap bmWatermark;
        Graphics grWatermark;

        bmWatermark = new Bitmap(bmBackground);
        bmWatermark.SetResolution(imgBackground.HorizontalResolution, imgBackground.VerticalResolution);

        grWatermark = Graphics.FromImage(bmWatermark);

        grBackground.SmoothingMode = SmoothingMode.AntiAlias;

        // Now add the dynamic text to image 
        using (Graphics graphics = Graphics.FromImage(imgBackground))
        {
            using (Font arialFont = new Font("Arial", 10))
            {
                grWatermark.DrawString(savingAmount, arialFont, Brushes.White, firstLocation);
                grWatermark.DrawString(savingDest, arialFont, Brushes.White, secondLocation);
            }
        }

        imgBackground.Save(Response.OutputStream, ImageFormat.Png);

        Response.ContentType = "image/png";

        Response.Flush();
        Response.End();


        return null;

    }

正如这段代码 运行 后提到的,我在浏览器中看到了图像,但是图像上没有显示文本,任何人都可以看到/提出可能导致此问题的原因吗?

我觉得该代码中有许多图像可以满足您所描述的代码意图。你想要的应该减少到这个:

  1. 加载图像
  2. 在该图像上创建图形
  3. 绘制到图形中并关闭
  4. 输出图片给客户端

在您提供的代码示例中,您将在 imgBackground 上打开图形,然后绘制到 grWatermark 图形中,该图形先前是在您再也不会触摸的图像上打开的。

public ActionResult GenerateImage(string savingAmount, string savingDest)
{
    // Hardcoding values for testing purposes.
    savingAmount = "25,000.00";
    savingDest = "Canada";

    PointF firstLocation = new PointF(10f, 10f);
    PointF secondLocation = new PointF(10f, 50f);

    Image imgBackground = Image.FromFile(Server.MapPath("~/assets/img/fb-share.jpg"));
    using (Graphics graphics = Graphics.FromImage(imgBackground))
    {
        using (Font arialFont = new Font("Arial", 10))
        {
            graphics.DrawString(savingAmount, arialFont, Brushes.White, firstLocation);
            graphics.DrawString(savingDest, arialFont, Brushes.White, secondLocation);
        }
    }

    imgBackground.Save(Response.OutputStream, ImageFormat.Png);

    Response.ContentType = "image/png";

    Response.Flush();
    Response.End();

    return null;
}