0
我目前正在嘗試生成水印並將它們放入PDF(FPDI)中,然後再下載文件。到目前爲止,它的工作完美,除非背景顏色不是白色,因爲那樣你就可以看到字體顏色。
所以我的問題將是如何使用PDF中的兩種透明顏色來呈現圖像,或者如何僅使字體透明並使用原始背景色作爲背景。
那是到目前爲止我的代碼: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或使用兩個透明色?