ユーザーが引用符を Facebook や Twitter で直接共有できるように、テキストを画像に変換しています。
php gdで画像を作りたいです。このコードは正常に動作しますが、長い行が自動的に分割されないなどの問題があります。また、cosmic フォントを使用したいので、フォントが機能しません。
これが私のコードです
<?php
header("Content-type: image/png");
$string = ' <p>I think the whole under-eye-bag thing is hereditary, and I just got lucky.</p> <p class="bq_fq_a"> <a id="qut" title="julianna_margulies"> Julianna Margulies </a> </p> <br>';
$font = '12';
$fonttype = '/path/cosmic.TTF';
$width = imagefontwidth($font) * strlen($string);
$height = imagefontheight($font);
$image = imagecreatetruecolor ($width,$height);
$white = imagecolorallocate ($image,255,255,255);
$black = imagecolorallocate ($image,0,0,0);
imagefill($image,0,0,$white);
imagestring ($image,$font,0,0,$string,$black);
imagepng ($image);
imagedestroy($image);
?>