Changeset 45892 for trunk/src/wp-includes/class-wp-image-editor-imagick.php
- Timestamp:
- 08/25/2019 10:20:57 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r45611 r45892 411 411 412 412 /** 413 * Resize multiple images from a single source. 413 * Create multiple smaller images from a single source. 414 * 415 * Attempts to create all sub-sizes and returns the meta data at the end. This 416 * may result in the server running out of resources. When it fails there may be few 417 * "orphaned" images left over as the meta data is never returned and saved. 418 * 419 * As of 5.3.0 the preferred way to do this is with `make_subsize()`. It creates 420 * the new images one at a time and allows for the meta data to be saved after 421 * each new image is created. 414 422 * 415 423 * @since 3.5.0 416 424 * 417 425 * @param array $sizes { 418 * An array of image size arrays. Default sizes are 'thumbnail', 'medium', 'medium_large', 'large'.426 * An array of image size data arrays. 419 427 * 420 428 * Either a height or width must be provided.
Note: See TracChangeset
for help on using the changeset viewer.