Changeset 56418
- Timestamp:
- 08/19/2023 12:08:32 AM (16 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-gd.php
r56416 r56418 166 166 * @param int|null $max_w Image width. 167 167 * @param int|null $max_h Image height. 168 * @param bool|array $crop 169 * Optional. Image cropping behavior. If false, the image will be scaled (default) ,168 * @param bool|array $crop { 169 * Optional. Image cropping behavior. If false, the image will be scaled (default). 170 170 * If true, image will be cropped to the specified dimensions using center positions. 171 171 * If an array, the image will be cropped using the array to specify the crop location: … … 198 198 * @param int $max_w 199 199 * @param int $max_h 200 * @param bool|array $crop 201 * Optional. Image cropping behavior. If false, the image will be scaled (default) ,200 * @param bool|array $crop { 201 * Optional. Image cropping behavior. If false, the image will be scaled (default). 202 202 * If true, image will be cropped to the specified dimensions using center positions. 203 203 * If an array, the image will be cropped using the array to specify the crop location: -
trunk/src/wp-includes/class-wp-image-editor-imagick.php
r56416 r56418 321 321 * @param int|null $max_w Image width. 322 322 * @param int|null $max_h Image height. 323 * @param bool|array $crop 324 * Optional. Image cropping behavior. If false, the image will be scaled (default) ,323 * @param bool|array $crop { 324 * Optional. Image cropping behavior. If false, the image will be scaled (default). 325 325 * If true, image will be cropped to the specified dimensions using center positions. 326 326 * If an array, the image will be cropped using the array to specify the crop location: -
trunk/src/wp-includes/class-wp-image-editor.php
r56416 r56418 107 107 * @param int|null $max_w Image width. 108 108 * @param int|null $max_h Image height. 109 * @param bool|array $crop 110 * Optional. Image cropping behavior. If false, the image will be scaled (default) ,109 * @param bool|array $crop { 110 * Optional. Image cropping behavior. If false, the image will be scaled (default). 111 111 * If true, image will be cropped to the specified dimensions using center positions. 112 112 * If an array, the image will be cropped using the array to specify the crop location: -
trunk/src/wp-includes/media.php
r56416 r56418 347 347 * @param int $height Image height in pixels. 348 348 * @param bool|array $crop { 349 * Optional. Image cropping behavior. If false, the image will be scaled (default) ,349 * Optional. Image cropping behavior. If false, the image will be scaled (default). 350 350 * If true, image will be cropped to the specified dimensions using center positions. 351 351 * If an array, the image will be cropped using the array to specify the crop location: … … 681 681 * @param int $height Image height. 682 682 * @param bool|array $crop { 683 * Optional. Image cropping behavior. If false, the image will be scaled (default) ,683 * Optional. Image cropping behavior. If false, the image will be scaled (default). 684 684 * If true, image will be cropped to the specified dimensions using center positions. 685 685 * If an array, the image will be cropped using the array to specify the crop location:
Note: See TracChangeset
for help on using the changeset viewer.