Ticket #19793: 19793.diff
File 19793.diff, 1.5 KB (added by , 9 years ago) |
---|
-
src/wp-includes/media.php
503 503 } 504 504 505 505 // if the resulting image would be the same size or larger we don't want to resize it 506 if ( $new_w >= $orig_w && $new_h >= $orig_h )506 if ( $new_w >= $orig_w && $new_h >= $orig_h && $dest_w != $orig_w && $dest_h != $orig_h ) { 507 507 return false; 508 } 508 509 509 510 // the return array matches the parameters to imagecopyresampled() 510 511 // int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h -
tests/phpunit/tests/image/dimensions.php
128 128 $this->assertEquals( array(0, 0, 0, 20, 400, 500, 480, 600), $out ); 129 129 } 130 130 131 function test_640x480() { 132 // crop 640x480 to fit 640x480 (no change) 133 $out = image_resize_dimensions(640, 480, 640, 480, true); 134 // dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h 135 $this->assertEquals( array(0, 0, 0, 0, 640, 480, 640, 480), $out ); 136 137 // resize 640x480 to fit 640x480 (no change) 138 $out = image_resize_dimensions(640, 480, 640, 480, false); 139 // dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h 140 $this->assertEquals( array(0, 0, 0, 0, 640, 480, 640, 480), $out ); 141 } 142 131 143 /** 132 144 * @ticket 19393 133 145 */