Merge branch '8.5'

This commit is contained in:
John Cupitt 2017-04-23 22:10:22 +01:00
commit d1be9dd1ce
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ The thumbnailing functionality is implemented by `vips_thumbnail()` and
see the docs for details. You can use these functions from any language
with a libvips binding. For example, from PHP you could write:
```php
$filename = ...;
```php?start_inline=1
$filename = "image.jpg";
$image = Vips\Image::thumbnail($filename, 200, ["height" => 200]);
$image->writeToFile("my-thumbnail.jpg");
```