Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: $output rodo paveiksleli

Parašė avice· 2011 Rugs. 7 17:09:19
#11

pavizdys:

<?php
$im = imagecreatetruecolor
(14, 14);
$wk = imagecreatefrompng('offline.png');
ImageColorAllocate
($wk,255,
0,255);
$img = imagecreatefromjpeg("avataras.jpg");
$dest_x = $size[0] - $watermark_width - -105; 
$dest_y = $size[1] - $watermark_height - -130;
imagecopymerge($img, $wk, $dest_x, $dest_y, 0, 0, 14, 14, 100);
header('Content-Type: image/jpg');
imagejpeg($img);  
imagedestroy($img);  
imagedestroy($wk);
?>