Skip to content

Update docs and enums for upcoming libvips 8.17 #271

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/ImageAutodoc.php
Original file line number Diff line number Diff line change
Expand Up @@ -427,12 +427,14 @@
* @throws Exception
* @method static Image matload(string $filename, array $options = []) Load mat from file.
* @throws Exception
* @method Image matrixinvert(array $options = []) Invert an matrix.
* @method Image matrixinvert(array $options = []) Invert a matrix.
* @throws Exception
* @method static Image matrixload(string $filename, array $options = []) Load matrix.
* @throws Exception
* @method static Image matrixload_source(Source $source, array $options = []) Load matrix.
* @throws Exception
* @method Image matrixmultiply(Image $right, array $options = []) Multiply two matrices.
* @throws Exception
* @method void matrixprint(array $options = []) Print matrix.
* @throws Exception
* @method void matrixsave(string $filename, array $options = []) Save image to matrix.
Expand Down Expand Up @@ -567,6 +569,8 @@
* @throws Exception
* @method Image remainder_const(float[]|float $c, array $options = []) Remainder after integer division of an image and a constant.
* @throws Exception
* @method Image remosaic(string $old_str, string $new_str, array $options = []) Rebuild an mosaiced image.
* @throws Exception
* @method Image replicate(integer $across, integer $down, array $options = []) Replicate an image.
* @throws Exception
* @method Image resize(float $scale, array $options = []) Resize an image.
Expand All @@ -589,7 +593,7 @@
* @throws Exception
* @method Image scRGB2XYZ(array $options = []) Transform scRGB to XYZ.
* @throws Exception
* @method Image scRGB2sRGB(array $options = []) Convert an scRGB image to sRGB.
* @method Image scRGB2sRGB(array $options = []) Convert scRGB to sRGB.
* @throws Exception
* @method Image scale(array $options = []) Scale an image to uchar.
* @throws Exception
Expand Down
1 change: 1 addition & 0 deletions src/Intent.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ abstract class Intent
const RELATIVE = 'relative';
const SATURATION = 'saturation';
const ABSOLUTE = 'absolute';
const AUTO = 'auto';
}
2 changes: 2 additions & 0 deletions src/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,6 @@ abstract class Kernel
const MITCHELL = 'mitchell';
const LANCZOS2 = 'lanczos2';
const LANCZOS3 = 'lanczos3';
const MKS2013 = 'mks2013';
const MKS2021 = 'mks2021';
}