11
08月
2015
41. 把文本转换成图片
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
header( "Content-type: image/png" );
$string = $_GET [ 'text' ];
$im = imagecreatefrompng( "images/button.png" );
$color = imagecolorallocate( $im , 255, 255, 255);
$px = (imagesx( $im ) - 7.5 * strlen ( $string )) / 2;
$py = 9;
$fontSize = 1;
imagestring( $im , fontSize, $px , $py , $string , $color );
imagepng( $im );
imagedestroy( $im );
?>
|
特殊说明,本文版权归 ning个人博客 所有带原创标签请勿转载,转载请注明出处.