Adding of Image Layer Fails (GD) PHP

五迷三道 提交于 2019-12-08 13:35:17

问题


I've installed the GD Library on my Apache just now, and it seems that my script below doesn't work. I'm trying to add a layer "play.png" to a youtube video thumbnail (http://img.youtube.com/vi/VIDEOID/default.jpg)

I've tried it with many different videoID's but the image doesn't load. There is a message that the graphic couldn't be opened because it contains errors.

I'm opening the file with postimage.php?v=7yV_JtFnIwo

http://img.youtube.com/vi/7yV_JtFnIwo/default.jpg opens correctly too...

Does anyone know where the issue could be?

Thanks in advance!

<?php

  // The header line informs the server of what to send the output
  // as. In this case, the server will see the output as a .png
  // image and send it as such

  header ("Content-type: image/png"); 


  // Defining the background image. Optionally, a .jpg image could 
  // could be used using imagecreatefromjpeg, but I personally 
  // prefer working with png

  $background = imagecreatefromjpeg("http://img.youtube.com/vi/".$_GET['v']."/default.jpg"); 


  // Defining the overlay image to be added or combined.

  $insert = imagecreatefrompng("play.png"); 


  // Select the first pixel of the overlay image (at 0,0) and use
  // it's color to define the transparent color

  imagecolortransparent($insert,imagecolorat($insert,0,0));


  // Get overlay image width and hight for later use

  $insert_x = imagesx($insert); 
  $insert_y = imagesy($insert); 


  // Combine the images into a single output image. Some people
  // prefer to use the imagecopy() function, but more often than 
  // not, it sometimes does not work. (could be a bug)

  imagecopymerge($background,$insert,0,0,0,0,$insert_x,$insert_y,100); 


  // Output the results as a png image, to be sent to viewer's
  // browser. The results can be displayed within an HTML document
  // as an image tag or background image for the document, tables,
  // or anywhere an image URL may be acceptable.

  imagepng($background,"",100); 

?>

回答1:


Do not close (avoid whitespaces or newslines) your script with ?> and use NULL instead "".

imagepng($background, NULL); 

Then, in imagepng the quality parameter is between 0 and 9, as in http://it.php.net/manual/en/function.imagepng.php.



来源:https://stackoverflow.com/questions/5946679/adding-of-image-layer-fails-gd-php

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!