Bitmap bitMapImage = new System.Drawing.Bitmap(Server.MapPath("zxcas.jpg"));
        Graphics graphicImage = Graphics.FromImage(bitMapImage);
        ///设置画笔的输出模式
        graphicImage.SmoothingMode = SmoothingMode.HighSpeed;
        ///添加文本字符串
        graphicImage.DrawString("568", new Font("04b", 12, FontStyle.Regular), SystemBrushes.WindowText, new Point(25,83));
        graphicImage.DrawString("1020", new Font("04b", 12, FontStyle.Regular), new SolidBrush(Color.Blue), new Point(25, 70));
        ///设置图像输出的格式
        Response.ContentType = "image/Jpeg";
        ///保存数据流
        bitMapImage.Save(Response.OutputStream, ImageFormat.Jpeg);
        ///释放占用的资源
        graphicImage.Dispose();
        bitMapImage.Dispose();
显示出来的图片比源图片差,请问家有没有好解决方法。或别的方法。还有,偶在急要在gif动画上在水印,有代码或源文件朋友可以发一份给偶邮件[email protected]