0
現在、透かしを生成し、ファイルがダウンロードされる前にPDF(FPDI)に配置しようとしています。これまでは、背景色が白でない場合を除いて、フォントの色を見ることができるので、完璧に動作します。
私の質問は、PDFの2つの透明な色か、フォントだけを透明にし、背景として元の背景色を使用する方法でイメージをレンダリングする方法です。これまでの私のコードザッツ
:PHP:透明PNGとPDFに挿入
$length = strlen($watermark);
$fw = imagefontwidth($fontsize);
$width = $fw*$length;
$height = imagefontheight($fontsize);
//Create watermark-image
$tmp_file_img = tempnam(TMP.'/pdfwatermarks', "pdfwatermark_img_");
$img = imagecreatetruecolor($width, $height);
//Background color
$bg = imagecolorallocate($img, 255, 255, 255);
imagefilledrectangle($img, 0, 0, $width, $height, $bg);
imagecolortransparent($img, $bg);
//Font color
$color = imagecolorallocate($img, 50, 50, 50);
//Write watermark-string
for($i=0; $i<$length; $i++){
$xpos = $i * $fw;
imagechar($img, $fontsize, $xpos, 0, $watermark, $color);
$watermark = substr($watermark, 1);
}
//Opacity
$blank = imagecreatetruecolor($width, $height);
$tbg = imagecolorallocate($blank, 255, 255, 255);
imagefilledrectangle($blank, 0, 0,$width ,$height , $tbg);
imagecolortransparent($blank, $tbg);
if (($opacity < 0) OR ($opacity >100)) $opacity = 100;
imagecopymerge($blank, $img, 0, 0, 0, 0, $width, $height, $opacity);
imagepng($blank,$tmp_file_img);
//Create PDF
$pdf = new FPDI();
if (file_exists($tmp_file)){
$pagecount = $pdf->setSourceFile($tmp_file);
} else {
clear();
return FALSE;
}
//Put the watermark on all pages
for($i=1; $i <= $pagecount; $i++) {
$tpl = $pdf->importPage($i);
$pdf->addPage();
$pdf->useTemplate($tpl, 1, 1, 0, 0, TRUE);
$pdf->Image($tmp_file_img, 1, 1, 0, 0, 'png');
}
//Write PDF
$pdf->Output($tmp_file, 'F');
私はFONTCOLORを変更したり、二つの透明色を使用できるようにした位置に色を取得するために、どちらかのことができるようにする方法はありますか?
で解決