PHP / GD resim haritalama / tekstüre

0 Cevap php

I'm trying to create a produkt configurator similar to: http://winmap.active-online.de/kler/pol/index.php3?room_name=200D I'd like to put texture or color on diffrent image elements and put it together into one result image.

Böyle usa çalışıyorum:

  header('Content-Type: image/jpeg');

$poszycie = imagecreatefrompng('poszycie.png');
$tekstura = imagecreatefrompng('tekstura.png'); 
//imagefilter($poszycie,IMG_FILTER_EMBOSS);
//imagepng($tekstura);

//$bcg = imagecreatefromjpeg('las.jpg');
//$img = imagecreatefromjpeg('zdjecie.jpg');

//imagecopymerge($poszycie, $tekstura, 0, 0, 0, 0, imagesx($poszycie), imagesy($poszycie), 75);
//imagepng($poszycie, null, 100);

imagecopymerge($poszycie, $tekstura, 0, 0, 0, 0, imagesx($poszycie), imagesy($poszycie), 50);

imagepng($poszycie);

ama sonuç: http://saveur.pl/testgd/configurator.png

Herhangi bir yardım için teşekkür ederiz.

0 Cevap