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()の関数のドキュメントを参照してください。

2 番目の引数としてファイル名を渡すと、画像がファイルに保存されます。

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 に答える