使用 GD 和 Freetype2,如果两者都安装了,那么您可以使用以下步骤将文本添加到 JPEG。
使用imagecreatefromjpeg()从文件创建图像资源
-
使用 Freetype2 库通过函数 imagefttext() 向该图像添加文本(请注意,如果您只安装了 Freetype 而未安装 Freetype2,您也可以使用函数 imagettftext())。
李>
使用imagejpeg()保存修改后的图像
示例:
[我只是在浏览器中输入了这个,从不运行它——所以如果它需要修改,道歉。]
/**
* Annotate an image with text using the GD2 and Freetype2 libraries
*
* @author Orbling@StackOverflow
*
* @param string $sourceFileName Source image path
* @param string $destinationFileName Destination image path
* @param string $text Text to use for annotation
* @param string $font Font definition file path
* @param float $fontSize Point size of text
* @param array $fontColour Font colour definition, expects
array('r' => #, 'g' => #, 'b' => #),
defaults to black
* @param int $x x-coordinate of text annotation
* @param int $y y-coordinate of text annotation
* @param float $rotation Angle of rotation for text annotation,
in degrees, anticlockwise from left-to-right
* @param int $outputQuality JPEG quality for output image
*
* @return bool Success status
*/
function imageannotate($sourceFileName, $destinationFileName,
$text, $font, $fontSize, array $fontColour = NULL,
$x, $y, $rotation = 0, $outputQuality = 90) {
$image = @imagecreatefromjpeg($sourceFileName);
if ($image === false) {
return false;
}
if (is_array($fontColour) && array_key_exists('r', $fontColour)
&& array_key_exists('g', $fontColour)
&& array_key_exists('b', $fontColour)) {
$colour = imagecolorallocate($image, $fontColour['r'],
$fontColour['g'],
$fontColour['b']);
if ($colour === false) {
return false;
}
} else {
$colour = @imagecolorallocate($image, 0, 0, 0);
}
if (@imagefttext($image, $fontSize, $rotation,
$x, $y, $colour, $font, $text) === false) {
return false;
}
return @imagejpeg($image, $destinationFileName, $outputQuality);
}
注意。为了调试,我会删除@ 符号。