Changeset 32964 for trunk/src/wp-includes/class-wp-image-editor-imagick.php
- Timestamp:
- 06/27/2015 01:02:12 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r32800 r32964 44 44 * 45 45 * @param array $args 46 * @return bool ean46 * @return bool 47 47 */ 48 48 public static function test( $args = array() ) { … … 94 94 * 95 95 * @param string $mime_type 96 * @return bool ean96 * @return bool 97 97 */ 98 98 public static function supports_mime_type( $mime_type ) { … … 234 234 * @param int|null $max_w Image width. 235 235 * @param int|null $max_h Image height. 236 * @param bool ean$crop237 * @return bool ean|WP_Error236 * @param bool $crop 237 * @return bool|WP_Error 238 238 */ 239 239 public function resize( $max_w, $max_h, $crop = false ) { … … 339 339 * @access public 340 340 * 341 * @param int $src_x The start x position to crop from.342 * @param int $src_y The start y position to crop from.343 * @param int $src_w The width to crop.344 * @param int $src_h The height to crop.345 * @param int $dst_w Optional. The destination width.346 * @param int $dst_h Optional. The destination height.347 * @param bool ean$src_abs Optional. If the source crop points are absolute.348 * @return bool ean|WP_Error341 * @param int $src_x The start x position to crop from. 342 * @param int $src_y The start y position to crop from. 343 * @param int $src_w The width to crop. 344 * @param int $src_h The height to crop. 345 * @param int $dst_w Optional. The destination width. 346 * @param int $dst_h Optional. The destination height. 347 * @param bool $src_abs Optional. If the source crop points are absolute. 348 * @return bool|WP_Error 349 349 */ 350 350 public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ) { … … 412 412 * @access public 413 413 * 414 * @param bool ean$horz Flip along Horizontal Axis415 * @param bool ean$vert Flip along Vertical Axis414 * @param bool $horz Flip along Horizontal Axis 415 * @param bool $vert Flip along Vertical Axis 416 416 * @returns true|WP_Error 417 417 */
Note: See TracChangeset
for help on using the changeset viewer.