SORU
6 EKİM 2010, ÇARŞAMBA


Birleştirme iki resim ile PHP

İki görüntü birlikte PHP ile birleştirmeye çalışıyorum.

Temel PHP ile örneğin... nasıl resim yerleştirme hakkında resim üst üste iki veya birleştirme miyim? Damgalama gibi bir şey denedim, ama çalışmak için görünmüyor.

Resim

alt text

Resim İki

alt text

...ve bu haline?SONUÇ:

alt text

CEVAP
6 EKİM 2010, ÇARŞAMBA


Yaptığım bir çalışma var.

<?php
$dest = imagecreatefrompng('vinyl.png');
$src = imagecreatefromjpeg('cover2.jpg');

imagealphablending($dest, false);
imagesavealpha($dest, true);

imagecopymerge($dest, $src, 10, 9, 0, 0, 181, 180, 100); //have to play with these numbers for it to work for you, etc.

header('Content-Type: image/png');
imagepng($dest);

imagedestroy($dest);
imagedestroy($src);
?>

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • Apple&Tech Reviews & Giveaways

    Apple&Tech R

    12 Temmuz 2008
  • Sean Murphy

    Sean Murphy

    4 ŞUBAT 2009
  • Tina Chen

    Tina Chen

    26 Mayıs 2012