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 ...

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

?

  1. Windows XP 인증방법 개선으로 업데이트 기능 정상 사용하기

  2. 서비스팩3 설치 후 Client Session manager 문제, SM00905 오류 해결방법

  3. 북마크 링크 주소모음

  4. 레지스트리 팁 - 로그오프하지 않고 반영하기

  5. Autohotkey 파일 저장시 한글 깨짐 현상

  6. javascript만으로 폼전송

  7. [javascript_tip]자바스크립트 값 넘기기

  8. 자바스크립트로 전송(submit) 버튼 누르기

  9. [엑셀] SUMPRODUCT 함수 이용, 조건에 따른 중복항목 제외 후 카운트하는 함수

  10. [엑셀] 와일드카드 문자의 변환처리 방법

  11. 레지스트리 컨트롤로 XP의 가상메모리 페이징 파일의 강제 자동설정을 끌 수 있는 방법

  12. 램디스크 숨기는 방법

  13. autohotkey 변수의 이해

  14. 인터넷익스플로러 로딩속도 빠르게 하는방법

  15. -응답없음- 으로 멈춰버린 프로그램 대기시간 줄이는 방법

  16. 스누피 고스트

  17. 그림안에 투명텍스트박스 넣기.

  18. PHP Text to Image

  19. 오류 socket error #10061 connection

  20. 엑셀에서 날짜와 시간 계산하는 법

Board Pagination Prev 1 ... 36 37 38 39 40 ... 46 Next
/ 46

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


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

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

설치 취소