Skip to content

Instantly share code, notes, and snippets.

@Mamaduka
Last active August 29, 2015 14:10
Show Gist options
  • Save Mamaduka/d17b15826d2cc47503fb to your computer and use it in GitHub Desktop.
Save Mamaduka/d17b15826d2cc47503fb to your computer and use it in GitHub Desktop.
<?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