最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

.Net Core 下使用ZKWeb.System.Drawing實(shí)現(xiàn)驗(yàn)證碼功能(圖形驗(yàn)證碼)

 更新時(shí)間:2016年11月15日 09:28:17   作者:NiaoX  
本文介紹.Net Core下用第三方ZKWeb.System.Drawing實(shí)現(xiàn)驗(yàn)證碼功能。非常不錯(cuò)具有參考借鑒價(jià)值,感興趣的朋友一起看看吧

本文介紹.Net Core下用第三方ZKWeb.System.Drawing實(shí)現(xiàn)驗(yàn)證碼功能。

通過測試的系統(tǒng):

Windows 8.1 64bit
Ubuntu Server 16.04 LTS 64bit
Fedora 24 64bit
CentOS 7.2 64bit

可以實(shí)現(xiàn)以下功能:

Open jpg, bmp, ico, png
Save jpg, bmp, ico, png
Resize image
Draw graphics with brush and pen
Open font and draw string

以上是官方給的資料。

No.1 項(xiàng)目引入ZKWeb.System.Drawing

NuGet引入包,不會的自己百度。

No.2 簡單的驗(yàn)證碼生成

int codeW = 80;
int codeH = 30;
int fontSize = 16;
Random rnd = new Random();
//顏色列表,用于驗(yàn)證碼、噪線、噪點(diǎn) 
Color[] color = { Color.Black, Color.Red, Color.Blue, Color.Green, Color.Orange, Color.Brown, Color.Brown, Color.DarkBlue };
//字體列表,用于驗(yàn)證碼 
string[] font = { "Times New Roman" };
//驗(yàn)證碼的字符集,去掉了一些容易混淆的字符 
//寫入Session、驗(yàn)證碼加密
//WebHelper.WriteSession("session_verifycode", Md5Helper.MD5(chkCode.ToLower(), 16));
//創(chuàng)建畫布
Bitmap bmp = new Bitmap(codeW, codeH);
Graphics g = Graphics.FromImage(bmp);
g.Clear(Color.White);
//畫噪線 
for (int i = 0; i < 1; i++)
{
int x1 = rnd.Next(codeW);
int y1 = rnd.Next(codeH);
int x2 = rnd.Next(codeW);
int y2 = rnd.Next(codeH);
Color clr = color[rnd.Next(color.Length)];
g.DrawLine(new Pen(clr), x1, y1, x2, y2);
}
//畫驗(yàn)證碼字符串 
for (int i = 0; i < chkCode.Length; i++)
{
string fnt = font[rnd.Next(font.Length)];
Font ft = new Font(fnt, fontSize);
Color clr = color[rnd.Next(color.Length)];
g.DrawString(chkCode[i].ToString(), ft, new SolidBrush(clr), (float)i * 18, (float)0);
}
//將驗(yàn)證碼圖片寫入內(nèi)存流,并將其以 "image/Png" 格式輸出 
MemoryStream ms = new MemoryStream();
try
{
bmp.Save(ms, ImageFormat.Png);
return ms.ToArray();
}
catch (Exception)
{
return null;
}
finally
{
g.Dispose();
bmp.Dispose();
}

No.3 發(fā)布部署運(yùn)行

直接上圖,不會的看這里.Net Core 之 Ubuntu 14.04 部署過程(圖文詳解)

注意:驗(yàn)證碼Windows下生成無壓力,我用的Ubuntu 14,需要安裝gdi包,運(yùn)行日志中會有提示。

安裝方法:

Ubuntu 16.04:

apt-get install libgdiplus
cd /usr/lib
ln -s libgdiplus.so gdiplus.dll

Fedora 23:

dnf install libgdiplus
cd /usr/lib64/
ln -s libgdiplus.so.0 gdiplus.dll

CentOS 7:

yum install autoconf automake libtool
yum install freetype-devel fontconfig libXft-devel
yum install libjpeg-turbo-devel libpng-devel giflib-devel libtiff-devel libexif-devel
yum install glib2-devel cairo-devel
git clone https://github.com/mono/libgdiplus
cd libgdiplus
./autogen.sh
make
make install
cd /usr/lib64/
ln -s /usr/local/lib/libgdiplus.so gdiplus.dll

以上所述是小編給大家介紹的.Net Core 下使用ZKWeb.System.Drawing實(shí)現(xiàn)驗(yàn)證碼功能(圖形驗(yàn)證碼),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

相關(guān)文章

最新評論

宜昌市| 汉中市| 岳阳县| 延安市| 天水市| 白河县| 贵溪市| 来宾市| 新闻| 崇明县| 尤溪县| 原平市| 景德镇市| 东宁县| 黄石市| 阆中市| 萨嘎县| 都匀市| 道孚县| 安阳县| 琼海市| 雅安市| 红安县| 卢龙县| 沙雅县| 开远市| 鹿邑县| 若尔盖县| 光山县| 都兰县| 永丰县| 呈贡县| 石城县| 乃东县| 类乌齐县| 金溪县| 雅江县| 安顺市| 高阳县| 洞头县| 建宁县|