PHP 文字轉圖片 [阻擋爬蟲程式]

PHP 文字轉圖片 [阻擋爬蟲程式]

PHP 文字轉圖片 [阻擋爬蟲程式]


資料來源: https://blog.csdn.net/yongh701/article/details/49363557


01.php的文字轉圖片很簡單,先在php的安裝目錄打開php.ini,找到extension=php_gd2.dll,將其前面的引號去掉,打開php的gd2擴展庫,就能直接使用php的關鍵字,將文字轉圖片。


02.專案目錄結構:

    img_generator.php是文字轉圖片所處理的php

    index.html是呈現給用戶的頁面。


03.Code

◆index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<title>图片测试</title>
	</head>
	 
	<body>
		<img src="img_generator.php?text=abc@test.com">
	</body>
	
</html>


img_generator.php

<?php
	$text=$_REQUEST["text"];//显示的文字
	$size=12;//字体大小
	$font="c:/windows/fonts/SIMHEI.TTF";//字体类型,这里为黑体,具体请在windows/fonts文件夹中,找相应的font文件
	$img=imagecreate(500,24);//创建一个长为500高为16的空白图片
	imagecolorallocate($img,0xff,0xff,0xff);//设置图片背景颜色,这里背景颜色为#ffffff,也就是白色
	$black=imagecolorallocate($img,0x00,0x00,0x00);//设置字体颜色,这里为#000000,也就是黑色
	imagettftext($img,$size,0,0,16,$black,$font,$text);//将ttf文字写到图片中
	header('Content-Type: image/png');//发送头信息
	imagepng($img);//输出图片,输出png使用imagepng方法,输出gif使用imagegif方法
?>

One thought on “PHP 文字轉圖片 [阻擋爬蟲程式]

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *