wp_get_image_editor
-
I want to resize image file with:
$original = $path . ‘/2020/06/0000082991492x-3.jpg’;
$editor = wp_get_image_editor($original, array());
$result = $editor->resize(1000, 1000, false);but returns error becouse original image has 800×800 pixel, and as i can se resize works only for mage image smaller. is there any way to make image bigger?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘wp_get_image_editor’ is closed to new replies.