이 기사에서는 타사 ZKWeb.System. Drawing을 사용하여 .Net Core에서 인증 코드 기능을 구현하는 방법을 소개합니다.
테스트를 통과한 시스템:
Windows 8.1 64비트
Ubuntu Server 16.04 LTS 64비트
Fedora 24 64비트
CentOS 7.2 64비트
다음 기능 :
jpg, bmp, ico, png 열기
jpg, bmp, ico, png 저장
이미지 크기 조정
브러쉬와 펜으로 그래픽 그리기
글꼴 열기 및 문자열 그리기
위 내용은 공식정보입니다.
No.1 프로젝트에서 ZKWeb.System.드로잉을 소개합니다
NuGet 가져오기 패키지, Baidu는 어떻게 하는지 모릅니다.
2번 간편인증코드 생성
int codeW = 80; int codeH = 30; int fontSize = 16; Random rnd = new Random(); //颜色列表,用于验证码、噪线、噪点 Color[] color = { Color.Black, Color.Red, Color.Blue, Color.Green, Color.Orange, Color.Brown, Color.Brown, Color.DarkBlue }; //字体列表,用于验证码 string[] font = { "Times New Roman" }; //验证码的字符集,去掉了一些容易混淆的字符 //写入Session、验证码加密 //WebHelper.WriteSession("session_verifycode", Md5Helper.MD5(chkCode.ToLower(), 16)); //创建画布 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); } //画验证码字符串 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); } //将验证码图片写入内存流,并将其以 "image/Png" 格式输出 MemoryStream ms = new MemoryStream(); try { bmp.Save(ms, ImageFormat.Png); return ms.ToArray(); } catch (Exception) { return null; } finally { g.Dispose(); bmp.Dispose(); }
3번 릴리즈 배포 및 운영
바로 위 picture , 모르신다면 여기를 읽어주세요. .Net Core의 Ubuntu 14.04 배포 프로세스(자세한 그림 및 텍스트 설명)
참고: 확인 코드는 아래에서 생성됩니다. 아무런 부담 없이 Windows를 사용하고 있습니다. Ubuntu 14를 사용합니다. gdi 패키지를 설치해야 하며 실행 로그에 프롬프트가 표시됩니다.
설치 방법:
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을 사용하여 인증코드 기능(그래픽 인증코드)을 구현해 보시기 바랍니다. 궁금한 점이 있으시면 메시지를 남겨주시면 편집자가 제 시간에 답변해 드리겠습니다. 또한 PHP 중국어 웹사이트를 지원해 주신 모든 분들께 감사드립니다!