Changeset 27794 for trunk/src/wp-includes/class-wp-image-editor.php
- Timestamp:
- 03/27/2014 08:39:08 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-image-editor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor.php
r26650 r27794 83 83 * Resizes current image. 84 84 * 85 * @since 3.5.0 86 * @access public 87 * @abstract 88 * 89 * @param int $max_w 90 * @param int $max_h 91 * @param boolean $crop 85 * At minimum, either a height or width must be provided. 86 * If one of the two is set to null, the resize will 87 * maintain aspect ratio according to the provided dimension. 88 * 89 * @since 3.5.0 90 * @access public 91 * @abstract 92 * 93 * @param int|null $max_w Image width. 94 * @param int|null $max_h Image height. 95 * @param boolean $crop 92 96 * @return boolean|WP_Error 93 97 */
Note: See TracChangeset
for help on using the changeset viewer.