Changeset 49927 for trunk/src/wp-includes/class-wp-image-editor-imagick.php
- Timestamp:
- 01/03/2021 10:02:13 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r49926 r49927 253 253 * @param int|null $max_h Image height. 254 254 * @param bool $crop 255 * @return bool|WP_Error255 * @return true|WP_Error 256 256 */ 257 257 public function resize( $max_w, $max_h, $crop = false ) { … … 525 525 * @param int $dst_h Optional. The destination height. 526 526 * @param bool $src_abs Optional. If the source crop points are absolute. 527 * @return bool|WP_Error527 * @return true|WP_Error 528 528 */ 529 529 public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ) { … … 776 776 * 777 777 * @param string $mime_type The mime type of the image. 778 * @return bool|WP_Error True on success, WP_Error object on failure.778 * @return true|WP_Error True on success, WP_Error object on failure. 779 779 */ 780 780 public function stream( $mime_type = null ) {
Note: See TracChangeset
for help on using the changeset viewer.