SommaireTelecharger la documentationChapitre suivantChapitre precedent  

 
Raccourci :  
Images

getimagesize
imagealphablending
imagearc
imagefilledarc
imageellipse
imagefilledellipse
imagechar
imagecharup
imagecolorallocate
imagecolordeallocate
imagecolorat
imagecolorclosestalpha
imagecolorclosest
imagecolorexact
imagecolorexactalpha
imagecolorresolve
imagecolorresolvealpha
imagegammacorrect
imagecolorset
imagecolorsforindex
imagecolorstotal
imagecolortransparent
imagecopy
imagecopymerge
imagecopymergegray
imagecopyresized
imagecopyresampled
imagecreate
imagecreatefromgif
imagecreatetruecolor
imagetruecolortopalette
imagecreatefromjpeg
imagecreatefrompng
imagecreatefromwbmp
imagecreatefromstring
imagedashedline
imagedestroy
imagefill
imagefilledpolygon
imagefilledrectangle
imagefilltoborder
imagefontheight
imagefontwidth
imagegif
imagepng
imagejpeg
imagewbmp
imageinterlace
imageline
imageloadfont
imagepolygon
imagepsbbox
imagepsencodefont
imagepsfreefont
imagepsloadfont
imagepsextendfont
imagepsslantfont
imagepstext
imagerectangle
imagesetpixel
imagesetbrush
imagesettile
imagesetthickness
imagestring
imagestringup
imagesx
imagesy
imagettfbbox
imagettftext
imagetypes
read_exif_data

8.11.33 imagecreatefrompng
[Notes en ligne] [Exemples]

Crée une nouvelle image PNG à partir d'un fichier ou d'une URL

resource imagecreatefrompng (string filename)
imagecreatefrompng() retourne un identifiant d'image représentant une image obtenue à partir du fichier filename.
imagecreatefromjpeg() retourne une chaîne vide en cas d'échec. Elle affiche aussi un message d'erreur, qui s'affiche comme un lien brisé dans un navigateur web. Pour faciliter le débuggage, voici une erreur PNG:
Exemple de gestion d'erreur lors de la création d'image (gracieusement offert par vic@zymsys.com )

<?php
function LoadPNG($imgname) {
  $im = @imagecreatefrompng($imgname); /* Tentative d'ouverture */
  if (!$im) { /* Vérification */
    $im = imagecreate(150, 30); /* Création d'une image blanche */
        $bgc = imagecolorallocate($im, 255, 255, 255);
        $tc  = imagecolorallocate($im, 0, 0, 0);
        imagefilledrectangle($im, 0, 0, 150, 30, $bgc);
        /* Affichage d'un message d'erreur */
        imagestring($im, 1, 5, 5, "Erreur de chargement de l'image $imgname", $tc);
    }
    return $im;
}
?>
     



Chapitre précédentChapitre suivantAccueil nexen.net