Skip to content

Commit ab2710c

Browse files
committed
Rename *.tif to *.tiff for consistency
There really isn't any practical difference between these two, but repo currently uses *.tiff files more than 8.3 variant filenames of *.tif. Also these aren't part of the test.
1 parent 806db1a commit ab2710c

File tree

7 files changed

+5
-5
lines changed

7 files changed

+5
-5
lines changed

ext/standard/tests/image/getimagesize.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ array(16) {
255255
["mime"]=>
256256
string(29) "application/x-shockwave-flash"
257257
}
258-
["test4pix.tif"]=>
258+
["test4pix.tiff"]=>
259259
array(5) {
260260
[0]=>
261261
int(4)

ext/standard/tests/image/getimagesize_basic.phpt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $imagetype_filenames = array(
2424
"BMP image file" => "200x100.bmp",
2525

2626
//TIFF intel byte order
27-
"TIFF intel byte order image file" => "200x100.tif",
27+
"TIFF intel byte order image file" => "200x100.tiff",
2828

2929
//JPC file
3030
"JPC image file" => "test1pix.jpc",
@@ -143,7 +143,7 @@ array(6) {
143143
array(0) {
144144
}
145145

146-
-- TIFF intel byte order image file (200x100.tif) --
146+
-- TIFF intel byte order image file (200x100.tiff) --
147147
array(5) {
148148
[0]=>
149149
int(200)

ext/standard/tests/image/getimagesize_tif_mm.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GetImageSize() for tiff format with big-endian (aka Motorola, aka MM) ordering
99
*/
1010

1111
echo "*** Testing getimagesize() : tiff_mm format ***\n";
12-
var_dump(getimagesize(__DIR__ . "/2x2mm.tif", $arr));
12+
var_dump(getimagesize(__DIR__ . "/2x2mm.tiff", $arr));
1313
var_dump($arr);
1414

1515
?>

ext/standard/tests/image/image_type_to_mime_type.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ array(16) {
5555
string(9) "image/psd"
5656
["test4pix.swf"]=>
5757
string(29) "application/x-shockwave-flash"
58-
["test4pix.tif"]=>
58+
["test4pix.tiff"]=>
5959
string(10) "image/tiff"
6060
}

0 commit comments

Comments
 (0)