Skip to content

Commit e41412b

Browse files
committed
formatting for phpcs
1 parent 1f1b670 commit e41412b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/vips-magick.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@
99
* image around that, then use imagick to save as another file.
1010
*/
1111

12-
$image = Vips\Image::newFromFile($argv[1],
13-
['access' => Vips\Access::SEQUENTIAL]);
12+
$image = Vips\Image::newFromFile(
13+
$argv[1],
14+
['access' => Vips\Access::SEQUENTIAL]
15+
);
1416
$image = $image->colourspace(Vips\Interpretation::RGB16);
1517
$bin = $image->writeToMemory();
1618
$imagick = new \Imagick();

0 commit comments

Comments
 (0)