English 中文(简体)
能否动态地制作Gif文档,其中含有使用php的某些文字或图像?
原标题:Is it possible to dynamically create Gif files with certain text or images in them using php?
  • 时间:2011-11-22 01:59:25
  •  标签:
  • php
  • gif

我很想知道,这能否做到:

For example, I have a list of 100 names. This list is represented as a drop down box. Now suppose, I have a gif image. If I select a name from the drop down box, the name is printed onto the gif image and the user is able to download that image with that specific name. Is is possible to do something like this in PHP? Does anyone know of any tutorial which I may refer to?

Many thanks for any advice.

问题回答

http://php.net/manual/en/Function.imagegif.php“rel=“nofollow”>_imagegif()。 请注意,你必须首先安装PHP GD图书馆。 通过使用<代码>phpinfo(<>>/code>对安装状况进行双重检查。

参考文件 更理想的是:

<?php
// Create a new image instance
$im = imagecreatetruecolor(100, 100);

// Make the background white
imagefilledrectangle($im, 0, 0, 99, 99, 0xFFFFFF);

// Draw a text string on the image, from a name parameter in the $_POST
imagestring($im, 3, 40, 20, $_POST[ name ], 0xFFBA00);

// Output the image to browser
header( Content-Type: image/gif );

imagegif($im);
imagedestroy($im);
?>




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签