php png失真的原因及解決辦法

靦腆歐也納發表於2021-10-24

1、建立一個PHP示例檔案。

2、建立一個和背景圖片一樣大小的真彩色畫布。

3、複製背景圖片。

4、通過“imagecreatefrompng”合成png圖片即可。

例項

<?php    ob_clean();    $bg = "image1.png";    $image_1 = imagecreatefrompng($bg);    $bgx = imagesx($image_1);    $bgy = imagesy($image_1);    //建立一個和背景圖片一樣大小的真彩色畫布(ps:只有這樣才能保證後面copy圖片的時候不會失真)    $bgimage = imageCreatetruecolor($bgx,$bgy);    imagesavealpha($bgimage, true);//保持透明    imagealphablending($bgimage, true);//混色模式    $alpha = imagecolorallocatealpha($bgimage, 0, 0, 0, 127);//透明    imagefill($bgimage, 0, 0, $alpha);    //copy背景圖片    imagecopyresampled($bgimage,$image_1,0,0,0,0,$bgx,$bgy,$bgx,$bgy);    $fontColor = imagecolorallocate($bgimage,0x33,0x33,0x33);    $image_2 = imagecreatefrompng( "image2.png");    //合成圖片2    imagecopyresampled($bgimage, $image_2, 100, 100, 0, 0, 40, 40, imagesx($image_2) , imagesy($image_2));    //文字    $textLen = mb_strlen($text1);    $fontSize  = 20;    $fontWidth = imagefontwidth($fontSize)*3;//不知為什麼,實測如此    $textWidth = $fontWidth * mb_strlen($text1);    $textx = ceil ( ($bgx - $textWidth) / 2 );    imageTTFText($bgimage, $fontSize, 0, $textx, 450, $fontColor, $font , $text1);    $result = imagepng($bgimage,"newimage.png");    imagedestroy($bgimage);    imagedestroy($qrcode);

更多相關解決方法

PHP解決合併圖片失真問題

$ni = imagecreatetruecolor($toW,$toH); //建立真彩色圖片$bg_x = (($toW-$ftoW)/2);$bg_y = (($toH-$ftoH)/2);$color=imagecolorallocate($ni,255,255,255); //建立顏色imagefill($ni, 0, 0, $color); //設定白底imagecopy($ni,$tm,$bg_x,$bg_y,0,0,$ftoW,$ftoH); //合併圖片imagedestroy($tm);


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70008723/viewspace-2838954/,如需轉載,請註明出處,否則將追究法律責任。

相關文章