我正在一個腳本中,我必須根據給定的文本創建一個圖像。在php中的圖像處理和獲得PDFof處理的圖像
基本上我必須將這些文本放置在生成圖像的各個位置。
直到我的工作完成。以下是該代碼。
header ("Content-type: image/jpeg");
$handle = imagecreate(415, 588) or die ("Cannot Create image");
$inven_tory=imagecreatefromjpeg($_SERVER['DOCUMENT_ROOT'].'/thumb/editor/text_letter.jpg');
imagecopymerge($handle,$inven_tory,0,0,0,0,415,588,100);
$bg_color = imagecolorallocate ($handle, 255, 255, 255); // 0 -255
$txt_color = imagecolorallocate ($handle, 0, 0, 0);
// The first parameter is our handle, then font size, rotation, starting X, starting Y, text color, font, and finally our text.
imagettftext($handle, 15, 0, 10, 25, $txt_color, "fonts/" . $font, wordwrap($text1, 35, "\n", true));
// The first parameter is our handle, then font size, rotation, starting X, starting Y, text color, font, and finally our text.
imagettftext($handle, 20, 0, 40, 120, $txt_color, "fonts/" . $font, wordwrap($text2, 13, "\n", true));
// The first parameter is our handle, then font size, rotation, starting X, starting Y, text color, font, and finally our text.
imagettftext($handle, 15, 0, 10, 500, $txt_color, "fonts/" . $font, wordwrap($text3, 40, "\n", true));
imagejpeg($handle);
圖片正在從本頁面正確創建。現在我將這個生成的圖像放在PDF中,並讓用戶保存該PDF。我怎樣才能做到這一點?如果你不清楚,請告訴我。