{% else-1 %}
(10 авг 2015, 21:58) (0/0) [0]
wapoleg, нет.да.
(10 авг 2015, 21:52) (0/0) [0]
<?php
$image = new SimpleImage('img.jpg' );
$image -> resizeToWidth( 600);
$image -> otput( );
?>

не выводится изображение на страницу.

<?php
public function output($image_type =IMAGETYPE_JPEG , $quality = 80) {
if ($image_type == IMAGETYPE_JPEG ) {
header( "Content-type: image/jpeg" );
imagejpeg ($this -> image, null , $quality);
} elseif ($image_type == IMAGETYPE_GIF ) {
header( "Content-type: image/gif" );
imagegif ($this -> image);
} elseif ($image_type == IMAGETYPE_PNG ) {
header( "Content-type: image/png" );
imagepng ($this -> image);
}
?>
  • 1 из 1