正文


首先放上核心算法,这里我觉得在common.cs中编写比较妥当:

    public static int[] GetRandom(int minValue, int maxValue, int count)
        int[] intList = new int[maxValue];//创建一个以  最大值大小  为长度的数组
        for (int i = 0; i < maxValue; i++)//数组的内容:最小值+(从 0 到 最大值减一 ),及intList为一个特殊规律的不重复的递增数组
            intList[i] = i + minValue;
        int[] intRet = new int[count];//创建以  要取的数的个数  为长度的数组
        int n = maxValue;
        Random rand = new Random();
        for (int i = 0; i < count; i++)
            int index = rand.Next(0, n);//随机取一个0到n之间的数
            intRet[i] = intList[index];
            intList[index] = intList[--n];
        return intRet;
    }

//n是一个递减变化的数 //intList的一个运行模拟序列: //0 1 2 3 4 n = listlength = 5,取到1 //0 4 2 3 | 4 n = listlength = 4,取到4 //0 3 2 | 3 4 n = listlength = 3 //... //不断用最后面的值来覆盖选中到的值,再把最后面的值去掉(通过n--实现,抽象意义上“截短”提供数字的intList),由此实现不重复序列

详细解析见以上的代码截图。 接着是.aspx.cs文件(下图为部分剪影,后方附上完整代码):

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
using System.IO;
using System.Drawing;
public partial class Default2 : System.Web.UI.Page
    protected void Page_Load(object sender, EventArgs e)
        Random rd = new Random();
        int num = rd.Next(1000,10000);
        string textString = num.ToString();
        int widthx = 800;
        int heightx = 600;
        Bitmap btmap = new Bitmap(widthx, heightx);
        Graphics gg = Graphics.FromImage(btmap);
        SolidBrush sb = new SolidBrush(Color.White);
        gg.FillRectangle(sb, new Rectangle(0, 0, widthx, heightx));
        Font ft = new Font("楷体",18,FontStyle.Strikeout);
        SolidBrush sbft = new SolidBrush(Color.Black);
        Color[] cr = {Color.Red,Color.Black,Color.Blue,Color.Yellow,Color.Gray,Color.Orange};
        //gg.DrawString(textString.Substring(0,textString.Length/2), ft , sbft, new PointF(0,0));
        //gg.DrawString(textString.Substring(5,5), ft, sbft1, new PointF(0, 300));
        int[] rdlist = common.GetRandom(0,cr.Length,textString.Length);//产生一个随机的不重复的int列表
        int leftmargin = 0;
        for (int i=0; i < textString.Length; i++)
            //使用时,顺序对这个int列表取值即可
            gg.DrawString(textString.Substring(i,1),ft,new SolidBrush(cr[rdlist[i]]),leftmargin,leftmargin+100+rd.Next(-15,15));
            leftmargin = leftmargin + 18;
        MemoryStream ms = new MemoryStream();
        btmap.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
        Response.ClearContent();
        Response.ContentType = "image/gif";
        Response.BinaryWrite(ms.ToArray());
}

至此便实现了要求了,下面放上效果图: