zoukankan      html  css  js  c++  java
  • [C#]将文字转换成图片

            /// <summary>
            /// 将文字转换成图片
            /// </summary>
            /// <param name="checkCode"></param>
            /// <returns></returns>
            private System.Drawing.Bitmap CreateCheckCodeImage(string checkCode)
            {
                if (checkCode == null || checkCode.Trim() == String.Empty)
                {
                    return null;
                }

                System.Drawing.Bitmap image = new System.Drawing.Bitmap((int)Math.Ceiling((checkCode.Length * 27.0)), 25);
                Graphics g = Graphics.FromImage(image);

                try
                {
                   //清空图片背景色 
                    g.Clear(Color.White);

                    //Font font = new System.Drawing.Font("Arial", 16, (System.Drawing.FontStyle.Bold   System.Drawing.FontStyle.Italic)); 
                    System.Drawing.Font font = new System.Drawing.Font("楷体_GB2312", 16, (System.Drawing.FontStyle.Bold));
                    System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new System.Drawing.Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true);
                    g.DrawString(checkCode, font, brush, 2, 2);

                    //画图片的波形滤镜效果 
                    //画图片的边框线 
                    g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);

                    return image;

                }
                finally
                {
                    //g.Dispose();
                    //image.Dispose();
                }
            }
    -----
  • 相关阅读:
    大搬家--百度之星 (递推)
    Scrambled Polygon--poj2007(极角排序模板)
    Space Ant--poj1696(极角排序)
    A. Link/Cut Tree--cf614A ()
    Ultra-QuickSort--POJ2299(归并排序求逆序数对)
    An Easy Problem?!--
    C. The Two Routes---cf602C(Dij)
    java 中jar的使用
    两种方法解决tomcat的 Failed to initialize end point associated with ProtocolHandler ["http-apr-8080"]
    Ajax(6) Ajax向servlet请求数据库操作 并显示到当前页面 这个未经测试
  • 原文地址:https://www.cnblogs.com/boneking/p/1441196.html
Copyright © 2011-2022 走看看