Skip to content
컴퓨터잡담
2010.09.29 18:20

PHP Text to Image

조회 수 13950 추천 수 0 댓글 1
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄


PHP Text to Image

PHP Text to Image

Change the settings and the click Create

TextThe text to display
Rotation0=normal 90=sideways
Font SizePoints
Font
PaddingSpace around the image
Transparent 
Fore Colour G  B (0-255)
Back Colour G  B (0-255)
 (pop-up window) 

Description

This script is a means to convert a string of text into an image. This has some simple uses such as displaying text such as email address that cannot be programmatically found. This can help to reduce the possibility of your email address being picked up by web crawlers and used for junk mail.

How To Use

To use the example interface above, simply modify or insert the string of text. You can edit any of the other settings, but this is optional.

Further Uses and Ideas:

How it Works:

The PHP Script

contact us for more information

Further Help

For anyone finding problems using this...

(1) Please test this example to ensure imagecreate works on your server...

<?php
header("Content-type: image/png");
$im = @imagecreate(110, 20)
    or die("Cannot Initialize new GD image stream");
$background_color = imagecolorallocate($im, 0, 0, 0);
$text_color = imagecolorallocate($im, 233, 14, 91);
imagestring($im, 1, 5, 5,  "A Simple Text String", $text_color);
imagepng($im);
imagedestroy($im);
?>

(2) Make sure to use the example at the top of this page by sending POST variables from your form. For example msg,font,size ...

로그인 후 댓글쓰기가 가능합니다.

?

List of Articles
번호 분류 제목 날짜 조회 수
414 종교와철학 포커이론 - 봉을 찾아라. 2010.12.22 6682
413 종교와철학 진실은 단순하고, 거짓은 복잡하다. 2010.12.22 5702
412 종교와철학 생각대로 되지 않는다고 너무 슬퍼마라. 1 2010.12.22 5043
411 종교와철학 삼성 이건희 회장의 막강권력 2010.12.22 5348
410 종교와철학 남녀의 욕 문화 2010.12.22 23744
409 종교와철학 사탄과 하나님의 공통점 2010.12.22 16149
408 종교와철학 가난의 고통의 연을 끊는 방법 2010.12.22 18065
407 종교와철학 세상이 꿈인지 현실인지 알 수가 없다 2010.12.22 14930
406 유용한상식 가난을 물려주는 것 2010.12.22 14872
405 주식 버블과 붕괴 1 2010.12.22 13963
Board Pagination Prev 1 ... 192 193 194 195 196 ... 235 Next
/ 235

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소