imagecopy doesn't work all the time
问题 I'm having an issue with imagecopy certain images on the $url variable will not appear even though there both PNG on the working and not working examples. The $local variable loads transparent images from the server and $url variable loads from a remote server. I have inculded a test transparent image for $local . Working: <?php header("Content-type: image/png"); $url = imagecreatefrompng("url_removed.png"); $local = imagecreatefrompng("http://url_removed.png"); imagecopy($url, $local, 0, 0,