2016-03-25 35 views
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を変更したり、二つの透明色を使用できるようにした位置に色を取得するために、どちらかのことができるようにする方法はありますか?

で解決

答えて

0

// determine image size 
$font = 4; 
$width = imagefontwidth($font) * strlen($text) + 2; 
$height = imagefontheight($font) + 2; 
// create transparent image 
$png = imagecreatetruecolor($width, $height); 
imageAlphaBlending($png, true); 
imagesavealpha($png, true); 
// background 
$color1 = imagecolorallocatealpha($png, 0, 0, 0, 127); 
imagefill($png, 0, 0, $color1); 
// foreground - text 
$color2 = imagecolorallocatealpha($png, 255, 255, 255, 126); 
imagestring($png, $font, 1, 1, $text, $color2); 
// save as png file 
imagepng($png, $fname); 
関連する問題