namespace Kissogram.Common.Security
{
    using System;
    using System.IO;
    using System.Web;
    using System.Drawing;

    //GIF验证码类
    public class Validate
    {
        //
设置最少4位验证码
        private byte TrueValidateCodeCount = 4;
        public byte ValidateCodeCount
        {
            get
            {
                return TrueValidateCodeCount;
            }
            set
            {
                //
验证码至少为3
                if (value > 4)
                    TrueValidateCodeCount = value;
            }
        }
        protected string ValidateCode = "";
        //
是否消除锯齿
        public bool FontTextRenderingHint = false;
        //
验证码字体
        public string ValidateCodeFont = "Arial";
        //
验证码型号(像素)
        public float ValidateCodeSize = 13;
        public int ImageHeight = 23;
        //
定义验证码中所有的字符
        public string AllChar = "1,2,3,4,5,6,7,8,9,0,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,W,X,Y,Z";