Last active
August 29, 2015 14:10
-
-
Save Mamaduka/d17b15826d2cc47503fb to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
$file = '/path/to/image.png'; | |
$editor = wp_get_image_editor( $file ); | |
// true for hard crop | |
$editor->resize( 300, 300, true ); | |
// use crop for more advanced cropping, positioning etc. | |
// $editor->crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ); | |
// Save file as '/path/to/image-300x300.png' | |
$new_image_info = $editor->save(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment