Hello Friends,
If you are looking to resize any image in wordpress. WP have their own library to do the same. Please have the below example to resize an image.
$source_file = 'upload/2016/01/sunrise.jpg';
$destination_file = 'upload/thumb_image/sunrise.jpg';
$crop = false; //false mean image resize, true mean crop image
$height = 300;
$width = 450;
$suffix = null; // default NULL or you can add something in suffix
$quality = 120; //default 90
image_resize( $source_file, $width, $height, $crop, $suffix, $destination_path, $quality );
0 Comment(s)