2

我有一张图片,我使用php“imagettftext”函数在这张图片上写了一些文字。现在我不知道它将如何自动保存。

header('Content-Type: image/png');
// Create the image
$im = imagecreatefromjpeg('image-1.jpg');

// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
//imagefilledrectangle($im, 0, 0, 399, 29, $white);

// The text to draw
$text = 'www.blockprintsonline.com';

// Replace path by your own font path
$font = 'arial.ttf';

list($width, $height, $type, $attr) = getimagesize($get_image);
$width1=$width*20/100;
$height1=$height*50/100;
$font_size=$width*4/100;

// Add some shadow to the text
//imagettftext($im, 30, 0, 11, 21, $grey, $font, $text);

// Add the text
imagettftext($im, $font_size, 0, $width1, $height1, $black, $font, $text);

// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
4

3 回答 3

2

如果要将图像保存到文件,请在此处imagepng()查看函数的文档。

通过将文件名作为第二个参数传递,它将图像保存到文件中,例如:

imagepng($im, "path/to/save/image/in.png");
于 2013-03-12T12:59:04.837 回答
1
<?php

// Save the image as 'simpletext.png'
imagepng($im, 'simpletext.png');

// Free up memory
imagedestroy($im);
?>

这是有关如何保存图像的示例。

于 2013-03-12T13:01:40.170 回答
0

如果您查看imagepng的文档,您会看到您可以提供文件名。这会将图像保存到磁盘

于 2013-03-12T12:59:25.887 回答