You appear to be a bot. Output may be restricted
Description
Usage
Tests_Image_Dimensions::test_0x400_no_crop();
Parameters
Returns
void
Source
File name: wordpress-develop-tests/phpunit/tests/image/dimensions.php
Lines:
1 to 12 of 12
public function test_0x400_no_crop() { // Landscape: resize 640x480 to fit 400h: 533x400. $out = image_resize_dimensions( 640, 480, 0, 400, false ); // dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h. $this->assertSame( array( 0, 0, 0, 0, 533, 400, 640, 480 ), $out ); // Portrait: resize 480x640 to fit 400h: 300x400. $out = image_resize_dimensions( 480, 640, 0, 400, false ); // dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h. $this->assertSame( array( 0, 0, 0, 0, 300, 400, 480, 640 ), $out ); }