0

以下代码是一个处理程序,它接受百分比(图表的百分比以显示为蓝色)、最大值(最大值)和加仑值(数字)来创建温度计样式的进度表。它输出一个图形,该图形被添加到 Web 表单中<img src="Thermometer.ashx" alt="" />

由于此图表旨在将进度显示为节省的加仑水数,因此最好让蓝色填充水桶图像。为此,我尝试在 web 表单中添加一个内部透明的桶形图像,并尝试将其放置在温度计图像的前面,但这没有奏效,因为似乎不可能在使用创建的图像之上叠加图像一个处理程序。

我的问题是:是否可以通过代码添加桶形图像,以便用作蓝色温度计的轮廓?还是需要在代码中从头开始创建桶形图像?我担心后者,因为我可能无法对其进行编码。

请看下面,如果有什么我能做的,请告诉我。

谢谢!

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Drawing;
using System.Net;
using System.Drawing.Imaging;
using System.Web.UI.HtmlControls;
namespace rainbarrel
{
    public class Thermometer : IHttpHandler
    {
        public bool IsReusable
        {
            get { return false; }
        }

        public void ProcessRequest(HttpContext context)
        {
            int Percent = 25;
            int Max = 20000;
            bool Gallon = true; 
            float Pixels = (float)Percent * 2.15f;
            Bitmap TempImage = new Bitmap(200, 250);
            Graphics TempGraphics = Graphics.FromImage(TempImage);
            TempGraphics.FillRectangle(Brushes.White, new Rectangle(0, 0, 200, 250));
            Pen TempPen = new Pen(Color.Black);
            BarrelFill(TempImage, Percent);
            bool DrawText = true;
            float Amount = Max;
            for (float y = 20.0f; y < 235.0f; y += 10.75f)
            {
                TempGraphics.DrawLine(TempPen, 119, y, 125, y);
                if (DrawText)
                {
                    Font TempFont = new Font("Arial", 8.0f, FontStyle.Regular);
                    if (Gallon)
                    {
                        TempGraphics.DrawString(Amount.ToString() + " Gal", TempFont, Brushes.Black, 130, y);
                    }
                    else
                    {
                        TempGraphics.DrawString(Amount.ToString(), TempFont, Brushes.Black, 130, y);
                    }
                    DrawText = false;
                }
                else DrawText = true;
                Amount -= ((Max / 100) * 5.0f);
            }

            string etag = "\"" + Percent.GetHashCode() + "\"";
            string incomingEtag = context.Request.Headers["If-None-Match"];

            context.Response.Cache.SetExpires(DateTime.Now.ToUniversalTime().AddDays(1));
            context.Response.Cache.SetCacheability(HttpCacheability.Public);
            context.Response.Cache.SetMaxAge(new TimeSpan(7, 0, 0, 0));
            context.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
            context.Response.Cache.SetETag(etag);

            if (String.Compare(incomingEtag, etag) == 0)
            {
                context.Response.StatusCode = (int)HttpStatusCode.NotModified;
                context.Response.End();
            }
            else
            {
                context.Response.ContentType = "image/Gif";
                TempImage.Save(context.Response.OutputStream, ImageFormat.Gif);
                TempImage.MakeTransparent();
            }
        }

        private void BarrelFill(Bitmap TempImage, int Percent)
        {
            if (Percent == 100)
            {
                FillRectangle(TempImage, 60, 20, 235);
            }
            else
            {
                FillRectangle(TempImage, 60, (int)(235.0f - ((float)Percent * 2.15f)), 235);
            }
        }

        private void FillRectangle(Bitmap TempImage, int x, int y1, int y2)
        {
            int MaxDistance = 50;
            for (int i = x - MaxDistance; i < x + MaxDistance; ++i)
            {
                for (int j = y1; j < y2; ++j)
                {
                    float Distance = (float)Math.Abs((i - x));
                    int BlueColor = (int)(255.0f * (1.0 - (Distance / (2.0f * MaxDistance))));
                    TempImage.SetPixel(i, j, Color.FromArgb(30, 144, BlueColor));
                }
            }
        }
    } 
}

更新:

我在这里找到了这篇文章,它向我展示了如何解决: 使用 GDI+ 覆盖图像

这是我的解决方案:

Image Barrel = Image.FromFile("C:\\Inetpub\\wwwroot\\barrel\\barrel_trans.png");
            TempGraphics.DrawImage(Barrel, -5, 0, 120, 240);
            Barrel.Dispose();

但是,png 图层的质量很差(略微模糊),虽然原始图像非常清晰清晰。有没有办法保留原件的图像质量?

非常感谢您的帮助。

4

2 回答 2

0

更改TempImage.Save(context.Response.OutputStream, ImageFormat.gif);为 Jpeg 解决了质量问题。

于 2010-11-19T22:04:13.907 回答
0

我相信实现这一点的最佳方法是在 C# 中创建整个图像并将其发送下来。您可以获得桶在“温度计”上的精确定位,如果桶已经是(半)透明 PNG,您可以在恒温器上执行 .DrawImage,添加文本,然后在发回之前做任何您想做的事情将最终图像直接放入 ResponseStream。

给你的其他几个建议:

由于您直接在 Handler 中处理所有内容,因此您应该处理自己的内部一次性资源。“使用”块是最简单的方法。你至少需要这两个:

using (Graphics TempGraphics = GetGraphicsFromBitmap(TempImage))
{
    for (float y = 20.0f; y < 235.0f; y += 10.75f)
    {
        TempGraphics.DrawLine(TempPen, 119, y, 125, y);
        ...
    }
}

using (Font TempFont = new Font("Arial", 8.0f, FontStyle.Regular))
{
    ...
}
于 2010-11-20T00:43:56.930 回答