Skip to content

Instantly share code, notes, and snippets.

@ineersa
Created April 28, 2014 14:49
Show Gist options
  • Save ineersa/11374406 to your computer and use it in GitHub Desktop.
Save ineersa/11374406 to your computer and use it in GitHub Desktop.
<?php
/**
* Class ImageHelper
*
* Simple class to manage image load, save and resize
*
* Usage:
*
* $image = new ImageHelper;
* $image->load('image.jpg');
* $image->resize(400, 200);
* $image->save('image1.jpg');
*
*/
class ImageHelper {
private $image;
private $image_type;
/**
* Load image from file
*
* @param $filename
*/
public function load($filename) {
$image_info = getimagesize($filename);
$this->image_type = $image_info[2];
if( $this->image_type == IMAGETYPE_JPEG ) {
$this->image = imagecreatefromjpeg($filename);
} elseif( $this->image_type == IMAGETYPE_GIF ) {
$this->image = imagecreatefromgif($filename);
} elseif( $this->image_type == IMAGETYPE_PNG ) {
$this->image = imagecreatefrompng($filename);
}
}
/**
* Save image to file
*
* @param $filename
* @param int $image_type
* @param int $compression
* @param null $permissions
*/
public function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) {
if( $image_type == IMAGETYPE_JPEG ) {
imagejpeg($this->image,$filename,$compression);
} elseif( $image_type == IMAGETYPE_GIF ) {
imagegif($this->image,$filename);
} elseif( $image_type == IMAGETYPE_PNG ) {
imagepng($this->image,$filename);
}
if( $permissions != null) {
chmod($filename,$permissions);
}
}
/**
* Output image
*
* @param int $image_type
*/
public function output($image_type=IMAGETYPE_JPEG) {
if( $image_type == IMAGETYPE_JPEG ) {
imagejpeg($this->image);
} elseif( $image_type == IMAGETYPE_GIF ) {
imagegif($this->image);
} elseif( $image_type == IMAGETYPE_PNG ) {
imagepng($this->image);
}
}
/**
* @return int
*/
public function getWidth() {
return imagesx($this->image);
}
/**
* @return int
*/
public function getHeight() {
return imagesy($this->image);
}
/**
* Resize image to given height
*
* @param $height
*/
public function resizeToHeight($height) {
$ratio = $height / $this->getHeight();
$width = $this->getWidth() * $ratio;
$this->resize($width,$height);
}
/**
* Resize image to given width
*
* @param $width
*/
public function resizeToWidth($width) {
$ratio = $width / $this->getWidth();
$height = $this->getheight() * $ratio;
$this->resize($width,$height);
}
/**
* Scale image to given percent
* 100 equal 100%
*
* @param $scale int
*/
public function scale($scale) {
$width = $this->getWidth() * $scale/100;
$height = $this->getheight() * $scale/100;
$this->resize($width,$height);
}
/**
* Resize image to given width and height
*
* @param $width
* @param $height
*/
public function resize($width,$height) {
$new_image = imagecreatetruecolor($width, $height);
imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
$this->image = $new_image;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment