├── LICENSE ├── composer.json └── src ├── Options ├── AbstractOption.php ├── AutoRotate.php ├── Background.php ├── Blur.php ├── CacheBuster.php ├── Crop.php ├── Dpr.php ├── EnforceThumbnail.php ├── Enlarge.php ├── Expires.php ├── Extend.php ├── ExtendAspectRatio.php ├── Filename.php ├── Format.php ├── FormatQuality.php ├── Gravity.php ├── Height.php ├── KeepCopyright.php ├── MaxBytes.php ├── MinHeight.php ├── MinWidth.php ├── Option.php ├── Padding.php ├── Preset.php ├── Quality.php ├── Raw.php ├── Resize.php ├── ResizingType.php ├── ReturnAttachment.php ├── Rotate.php ├── Sharpen.php ├── Size.php ├── SkipProcessing.php ├── StripColorProfile.php ├── StripMetadata.php ├── Trim.php ├── Watermark.php ├── Width.php └── Zoom.php ├── Support ├── Color.php ├── GravityType.php ├── ImageFormat.php └── UrlSigner.php └── UrlBuilder.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Options/AbstractOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/AbstractOption.php -------------------------------------------------------------------------------- /src/Options/AutoRotate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/AutoRotate.php -------------------------------------------------------------------------------- /src/Options/Background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Background.php -------------------------------------------------------------------------------- /src/Options/Blur.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Blur.php -------------------------------------------------------------------------------- /src/Options/CacheBuster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/CacheBuster.php -------------------------------------------------------------------------------- /src/Options/Crop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Crop.php -------------------------------------------------------------------------------- /src/Options/Dpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Dpr.php -------------------------------------------------------------------------------- /src/Options/EnforceThumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/EnforceThumbnail.php -------------------------------------------------------------------------------- /src/Options/Enlarge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Enlarge.php -------------------------------------------------------------------------------- /src/Options/Expires.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Expires.php -------------------------------------------------------------------------------- /src/Options/Extend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Extend.php -------------------------------------------------------------------------------- /src/Options/ExtendAspectRatio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/ExtendAspectRatio.php -------------------------------------------------------------------------------- /src/Options/Filename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Filename.php -------------------------------------------------------------------------------- /src/Options/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Format.php -------------------------------------------------------------------------------- /src/Options/FormatQuality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/FormatQuality.php -------------------------------------------------------------------------------- /src/Options/Gravity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Gravity.php -------------------------------------------------------------------------------- /src/Options/Height.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Height.php -------------------------------------------------------------------------------- /src/Options/KeepCopyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/KeepCopyright.php -------------------------------------------------------------------------------- /src/Options/MaxBytes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/MaxBytes.php -------------------------------------------------------------------------------- /src/Options/MinHeight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/MinHeight.php -------------------------------------------------------------------------------- /src/Options/MinWidth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/MinWidth.php -------------------------------------------------------------------------------- /src/Options/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Option.php -------------------------------------------------------------------------------- /src/Options/Padding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Padding.php -------------------------------------------------------------------------------- /src/Options/Preset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Preset.php -------------------------------------------------------------------------------- /src/Options/Quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Quality.php -------------------------------------------------------------------------------- /src/Options/Raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Raw.php -------------------------------------------------------------------------------- /src/Options/Resize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Resize.php -------------------------------------------------------------------------------- /src/Options/ResizingType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/ResizingType.php -------------------------------------------------------------------------------- /src/Options/ReturnAttachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/ReturnAttachment.php -------------------------------------------------------------------------------- /src/Options/Rotate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Rotate.php -------------------------------------------------------------------------------- /src/Options/Sharpen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Sharpen.php -------------------------------------------------------------------------------- /src/Options/Size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Size.php -------------------------------------------------------------------------------- /src/Options/SkipProcessing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/SkipProcessing.php -------------------------------------------------------------------------------- /src/Options/StripColorProfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/StripColorProfile.php -------------------------------------------------------------------------------- /src/Options/StripMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/StripMetadata.php -------------------------------------------------------------------------------- /src/Options/Trim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Trim.php -------------------------------------------------------------------------------- /src/Options/Watermark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Watermark.php -------------------------------------------------------------------------------- /src/Options/Width.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Width.php -------------------------------------------------------------------------------- /src/Options/Zoom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Options/Zoom.php -------------------------------------------------------------------------------- /src/Support/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Support/Color.php -------------------------------------------------------------------------------- /src/Support/GravityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Support/GravityType.php -------------------------------------------------------------------------------- /src/Support/ImageFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Support/ImageFormat.php -------------------------------------------------------------------------------- /src/Support/UrlSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/Support/UrlSigner.php -------------------------------------------------------------------------------- /src/UrlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onliner/imgproxy-php/HEAD/src/UrlBuilder.php --------------------------------------------------------------------------------