Changeset 56177 for trunk/src/wp-includes/class-wp-image-editor-gd.php
- Timestamp:
- 07/09/2023 08:15:03 PM (19 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-image-editor-gd.php
r54226 r56177 325 325 */ 326 326 public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ) { 327 // If destination width/height isn't specified, 328 // use same as width/height from source. 327 /* 328 * If destination width/height isn't specified, 329 * use same as width/height from source. 330 */ 329 331 if ( ! $dst_w ) { 330 332 $dst_w = $src_w;
Note: See TracChangeset
for help on using the changeset viewer.