This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This function is used to resize and crop image | |
* based on width from the center of the image | |
* | |
* creates new image from jpg,gif,png,bmp to png images | |
*/ | |
function image_resize_crop ( $src, $w, $h, $dest = null, $override = false, $createNewIfExists = false ) { | |
$ext = array_pop ( explode ('.', $src) ); | |
$filenameSrc = str_replace (".$ext", '', basename($src) ); |