Skip to content

Commit

Permalink
Немного больше сжатия для PNG изображений
Browse files Browse the repository at this point in the history
  • Loading branch information
Finesse committed May 20, 2016
1 parent 22a1c7f commit 72176ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Image.php
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ protected static function saveImage( $bitmap, $file, $type, $quality = 0.75 )
case IMAGETYPE_PNG:
@imagealphablending( $bitmap, false );
@imagesavealpha( $bitmap, true );
$result = @imagepng( $bitmap, $file );
$result = @imagepng( $bitmap, $file, 9 );
@imagealphablending( $bitmap, true );
return $result;

Expand Down Expand Up @@ -1169,7 +1169,7 @@ protected static function copyBitmap( $bitmap )
$result = @imagecopy( $bitmap2, $bitmap, 0, 0, 0, 0, $width, $height );

if ( !$bitmap2 || !$result )
throw new \Exception( 'Не удалось скопировать ресурс изображение. Возможно, не хватает оперативной памяти.' );
throw new \Exception( 'Не удалось скопировать ресурс изображения. Возможно, не хватает оперативной памяти.' );

return $bitmap2;
}
Expand Down

0 comments on commit 72176ef

Please sign in to comment.