php png失真的原因及解决办法

在本篇文章里小编给大家整理的是一篇关于php png失真的原因及解决办法,有需要的朋友们可以跟着学习参考下。

1、创建一个PHP示例文件。

2、创建一个和背景图片一样大小的真彩色画布。

3、复制背景图片。

4、通过“imagecreatefrompng”合成png图片即可。

实例:

  1. <?php
  2. ob_clean();
  3. $bg = "image1.png";
  4. $image_1 = imagecreatefrompng($bg);
  5. $bgx = imagesx($image_1);
  6. $bgy = imagesy($image_1);
  7. //创建一个和背景图片一样大小的真彩色画布(ps:只有这样才能保证后面copy图片的时候不会失真)
  8. $bgimage = imageCreatetruecolor($bgx,$bgy);
  9. imagesavealpha($bgimage, true);//保持透明
  10. imagealphablending($bgimage, true);//混色模式
  11. $alpha = imagecolorallocatealpha($bgimage, 0, 0, 0, 127);//透明
  12. imagefill($bgimage, 0, 0, $alpha);
  13. //copy背景图片
  14. imagecopyresampled($bgimage,$image_1,0,0,0,0,$bgx,$bgy,$bgx,$bgy);
  15. $fontColor = imagecolorallocate($bgimage,0x33,0x33,0x33);
  16. $image_2 = imagecreatefrompng( "image2.png");
  17. //合成图片2
  18. imagecopyresampled($bgimage, $image_2, 100, 100, 0, 0, 40, 40, imagesx($image_2) , imagesy($image_2));
  19. //文字
  20. $textLen = mb_strlen($text1);
  21. $fontSize = 20;
  22. $fontWidth = imagefontwidth($fontSize)*3;//不知为什么,实测如此
  23. $textWidth = $fontWidth * mb_strlen($text1);
  24. $textx = ceil ( ($bgx - $textWidth) / 2 );
  25. imageTTFText($bgimage, $fontSize, 0, $textx, 450, $fontColor, $font , $text1);
  26. $result = imagepng($bgimage,"newimage.png");
  27. imagedestroy($bgimage);
  28. imagedestroy($qrcode);

更多相关解决方法

PHP解决合并图片失真问题

  1. $ni = imagecreatetruecolor($toW,$toH); //创建真彩色图片
  2. $bg_x = (($toW-$ftoW)/2);
  3. $bg_y = (($toH-$ftoH)/2);
  4. $color=imagecolorallocate($ni,255,255,255); //创建颜色
  5. imagefill($ni, 0, 0, $color); //设置白底
  6. imagecopy($ni,$tm,$bg_x,$bg_y,0,0,$ftoW,$ftoH); //合并图片
  7. imagedestroy($tm);