├── .github └── workflows │ ├── lint.yml │ ├── settings │ ├── both.json │ ├── ffi-only.json │ └── vips-only.json │ └── tests.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── lib ├── Imagine │ ├── Image │ │ └── VipsProfile.php │ └── Vips │ │ ├── Drawer.php │ │ ├── Effects.php │ │ ├── Font.php │ │ ├── Image.php │ │ ├── Imagine.php │ │ └── Layers.php └── resources │ └── colorprofiles │ ├── AdobeRGB1998.icc │ ├── cmyk.icm │ ├── gray.icc │ └── sRGB.icm └── tests ├── BasicImageTest.php └── EnabledTest.php /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/settings/both.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/.github/workflows/settings/both.json -------------------------------------------------------------------------------- /.github/workflows/settings/ffi-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/.github/workflows/settings/ffi-only.json -------------------------------------------------------------------------------- /.github/workflows/settings/vips-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/.github/workflows/settings/vips-only.json -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/composer.json -------------------------------------------------------------------------------- /lib/Imagine/Image/VipsProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/Imagine/Image/VipsProfile.php -------------------------------------------------------------------------------- /lib/Imagine/Vips/Drawer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/Imagine/Vips/Drawer.php -------------------------------------------------------------------------------- /lib/Imagine/Vips/Effects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/Imagine/Vips/Effects.php -------------------------------------------------------------------------------- /lib/Imagine/Vips/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/Imagine/Vips/Font.php -------------------------------------------------------------------------------- /lib/Imagine/Vips/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/Imagine/Vips/Image.php -------------------------------------------------------------------------------- /lib/Imagine/Vips/Imagine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/Imagine/Vips/Imagine.php -------------------------------------------------------------------------------- /lib/Imagine/Vips/Layers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/Imagine/Vips/Layers.php -------------------------------------------------------------------------------- /lib/resources/colorprofiles/AdobeRGB1998.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/resources/colorprofiles/AdobeRGB1998.icc -------------------------------------------------------------------------------- /lib/resources/colorprofiles/cmyk.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/resources/colorprofiles/cmyk.icm -------------------------------------------------------------------------------- /lib/resources/colorprofiles/gray.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/resources/colorprofiles/gray.icc -------------------------------------------------------------------------------- /lib/resources/colorprofiles/sRGB.icm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/lib/resources/colorprofiles/sRGB.icm -------------------------------------------------------------------------------- /tests/BasicImageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/tests/BasicImageTest.php -------------------------------------------------------------------------------- /tests/EnabledTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rokka-io/imagine-vips/HEAD/tests/EnabledTest.php --------------------------------------------------------------------------------