1: 2:
header( "Content-type: image/gif"); $this->myImage = imagecreatefromgif($this->imgSrc) or die("Error: Cannot create image!");
1: 2: 3: 4: 5: 6: 7: 8: 9:
<?php header( "Content-type: image/gif"); printf ("%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c% c%c%c%c%c%c%c%c",71,73,70,56,57,97,1,0,1,0,128,255,0,192,192,192,0,0,0,33,249,4, 1,0,0,0,0,44,0,0,0,0,1,0,1,0,0,2,2,68,1,0,59); ?>
1: 2: 3:
header( "Content-type: image/gif"); $error_image = sprintf("%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c",71,73,70,56,57,97,1,0,1,0,128,255,0,192,192,192,0,0,0,33,249,4,1,0,0,0,0,44,0,0,0,0,1,0,1,0,0,2,2,68,1,0,59); $this->myImage = imagecreatefromgif($this->imgSrc) or die ($error_image);