email address 生成圖片程序

 
把下面的文件保存爲index.php
 
<?
/*
MailX Managment System 0.8 Beta
*/
header("Content-type:image/png");
$mailaddress=$_GET['mailname'];
$mailaddresslen=strlen($mailaddress);
$mailaddressimages=imagecreate($mailaddresslen*10,25);
$lenadd=$mailaddresslen;
$fontsize="4";
$center=(imagesx($mailaddressimages)-8.3*strlen($mailaddress))/2;
$mailimagesbackground=ImageColorAllocate($mailaddressimages,231,196,43);
$mailimagesfacecolor=ImageColorAllocate($mailaddressimages,0,0,0);
ImageString($mailaddressimages,$fontsize,$center,5,$mailaddress,$mailimagesfacecolor);
Imagepng($mailaddressimages); 
ImageDestroy($mailaddressimages);
?>
 

把下面的文件保存爲index.html
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" />
<head>
<title>Welcome to domain.com</title>
<meta content="all" name="robots" />
<meta content="[email protected],US" name="author" />
<meta content="www.domain.com,Reprint from then webseits" name=Copyright />
<meta content="Welcome to domain.com!" name=description />
<meta content="About For China News Sports Entertainment Shop Business Travel" name=keywords />
<meta http-equiv=Content-Language content="iso-8859-1" />
<link rev=stylesheet media=all href="CSS/style01.css" type=text/css rel=stylesheet />
<style type=text/css media=all>@import url("css/style01.css");</style>
<meta http-equiv="Content-Language" content="en" />
<meta http-equiv="pics-label" content='(pics-1.1 "http://www.icra.org/ratingsv02.html" l gen true for "http://www.domain.com" r (nz 1 vz 1 lz 1 oz 1 cz 1) gen true for "http://www.domain.com" r (nz 1 vz 1 lz 1 oz 1 cz 1))' />
<meta http-equiv="reply-to" content="[email protected]" />
<meta name="Author" content="domain.com employee" />
<meta name="Copyright" content="Copyright (C) 2002-2005 domain.com All signature Rights Reserved." />
<meta content="MSHTML 6.00.3790.0" name="generator" />
</head>
<body>
<form action="index.php" mothod="post">
You email:<input name="mailname" type="text" value="[email protected]" /><br /><input type="submit" value="
確定" />
</form>
 
然後把兩個文件放在同一個目錄就可以了.
 
這個程序主要是.
通過get獲取值後生成.
一個圖片格式的email地址.
主要是爲了防止email搜索軟件抓取email地址.


參考示例 : http://www.5h6.com/article/27636.html
 
發佈了8 篇原創文章 · 獲贊 3 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章