Diễn đàn    ASP.NET & Sharepoint MOSS, WSS 2007    Tạo captcha mã chống spam cho hệ thống

Thành viênTrả lời
tieuphu

Thống chế Erich von Manstein
51  bài
15-10-2008 22:26:31
Captcha: Completely Automated Public Turing test to tell Computers and Humans Apart (Phép thử Turing công cộng hoàn toàn tự động để phân biệt máy tính với người)

Nhiệm vụ chính :

- tạo ra 1 xâu string ngẫu nhiên
- vẽ xâu này trên màn hình để người dùng cuối có thể nhìn được
- uốn cong nó đi để chống captcha bot.
- vẽ thêm hình nền để tạo nhiễu chống captchabot

Và nó đây.

http://coder.awas.vn/downloads.ashx?id=2ed69db838ab4c2794996c7799e7dbd7
 
aspnet

Lập trình không biên giới
608  bài
28-5-2018 13:51:51
string captcha = CommonFunction.GetGuid().Substring(0, 4).ToUpper();
Session["CAPTCHA"] = captcha;
int wid = 180;
int hei = 40;

string fname = UrlProvider.RootFolder + "/images/captcha.jpg";
string file = Server.MapPath(fname);
System.Drawing.Image img = System.Drawing.Image.FromFile(file);

Bitmap bmp = new Bitmap(wid, hei);
Graphics gr = Graphics.FromImage(bmp);
System.Drawing.RectangleF rec = new RectangleF(0, 0, wid, hei);
gr.DrawImage(img, rec);

Font font = new Font("Arial", 18, System.Drawing.FontStyle.Bold);
PointF pointf = new PointF(16, 6);
Brush brush = GetBrush();
gr.DrawString(captcha, font, brush, pointf);
font = new Font("Arial", 10);

Response.ContentType = "image/jpeg";
Response.Clear();
bmp.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
bmp.Dispose();
Response.Flush();
Response.End();
---
Cây sẽ cho lộc và cây sẽ cho hoa ...
 

Chủ đề gần đây :

Cùng loại :

Tên file Mô tả chi tiết Ngày
NWeb.zip (1) Module đơn giản Newsweb trên Dotnetnuke v10.x.x.x10/18/2025 8:08:11 AM
vspforum.zip (11) Ma nguon vspforum ngay xua4/18/2023 6:38:37 AM
pdfjs.rar (2) pdfjs 2017 : hiển thị tốt trên iphone 11, 12, 13 không lỗi, bản 2012 sẽ lỗi trên iphone6/21/2022 11:52:48 AM
pdfjs2.rar (2) Xem file pdf bằng viewer.hml cua pdfjs (thư viện chuẩn mozilla) 2012. https://mozilla.github.io/pdf.js/getting_started/#download có thể download bản prebuild tại đây6/21/2022 11:52:04 AM
runner.zip (0) using three.js, orbitcontrol to view an object move random on map. Di chuyển 1 đồ vật ngẫu nhiên trên bản đồ, sử dụng với demo nhân viên di chuyển trong văn phòng. Toàn js download về là chạy12/5/2019 5:55:14 PM
gmap.zip (1) google map + marker7/17/2019 2:25:05 PM
vinsmarthomeservice.zip (1) java post json to api, use AsyncTask, event listener7/9/2019 5:00:10 PM
fblogin.zip (0) Login facebook bang javascript SDK7/9/2019 9:16:37 AM
autocomplete-location.zip (2) autocomplete location geo from google place, html + js7/4/2019 4:37:55 PM
WebAPI.zip (8) api for android access db (v1.0.0)7/4/2019 9:14:17 AM