gitextract_zeq9zksh/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── run-tests.yml ├── .gitignore ├── .well-known/ │ └── funding-manifest-urls ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── composer.json ├── docker-compose.yml ├── phpcs.xml.dist ├── phpstan.dist.neon ├── phpunit.dist.xml ├── readme.md ├── src/ │ ├── Analyzers/ │ │ ├── ColorspaceAnalyzer.php │ │ ├── HeightAnalyzer.php │ │ ├── PixelColorAnalyzer.php │ │ ├── PixelColorsAnalyzer.php │ │ ├── ProfileAnalyzer.php │ │ ├── ResolutionAnalyzer.php │ │ └── WidthAnalyzer.php │ ├── Collection.php │ ├── Colors/ │ │ ├── AbstractColor.php │ │ ├── AbstractColorChannel.php │ │ ├── Cmyk/ │ │ │ ├── Channels/ │ │ │ │ ├── Cyan.php │ │ │ │ ├── Key.php │ │ │ │ ├── Magenta.php │ │ │ │ └── Yellow.php │ │ │ ├── Color.php │ │ │ ├── Colorspace.php │ │ │ └── Decoders/ │ │ │ └── StringColorDecoder.php │ │ ├── Hsl/ │ │ │ ├── Channels/ │ │ │ │ ├── Hue.php │ │ │ │ ├── Luminance.php │ │ │ │ └── Saturation.php │ │ │ ├── Color.php │ │ │ ├── Colorspace.php │ │ │ └── Decoders/ │ │ │ └── StringColorDecoder.php │ │ ├── Hsv/ │ │ │ ├── Channels/ │ │ │ │ ├── Hue.php │ │ │ │ ├── Saturation.php │ │ │ │ └── Value.php │ │ │ ├── Color.php │ │ │ ├── Colorspace.php │ │ │ └── Decoders/ │ │ │ └── StringColorDecoder.php │ │ ├── Profile.php │ │ └── Rgb/ │ │ ├── Channels/ │ │ │ ├── Alpha.php │ │ │ ├── Blue.php │ │ │ ├── Green.php │ │ │ └── Red.php │ │ ├── Color.php │ │ ├── Colorspace.php │ │ └── Decoders/ │ │ ├── HexColorDecoder.php │ │ ├── HtmlColornameDecoder.php │ │ ├── StringColorDecoder.php │ │ └── TransparentColorDecoder.php │ ├── Config.php │ ├── Decoders/ │ │ ├── Base64ImageDecoder.php │ │ ├── BinaryImageDecoder.php │ │ ├── ColorObjectDecoder.php │ │ ├── DataUriImageDecoder.php │ │ ├── EncodedImageObjectDecoder.php │ │ ├── FilePathImageDecoder.php │ │ ├── FilePointerImageDecoder.php │ │ ├── ImageObjectDecoder.php │ │ ├── NativeObjectDecoder.php │ │ └── SplFileInfoImageDecoder.php │ ├── Drivers/ │ │ ├── AbstractDecoder.php │ │ ├── AbstractDriver.php │ │ ├── AbstractEncoder.php │ │ ├── AbstractFontProcessor.php │ │ ├── AbstractFrame.php │ │ ├── Gd/ │ │ │ ├── Analyzers/ │ │ │ │ ├── ColorspaceAnalyzer.php │ │ │ │ ├── HeightAnalyzer.php │ │ │ │ ├── PixelColorAnalyzer.php │ │ │ │ ├── PixelColorsAnalyzer.php │ │ │ │ ├── ResolutionAnalyzer.php │ │ │ │ └── WidthAnalyzer.php │ │ │ ├── Cloner.php │ │ │ ├── ColorProcessor.php │ │ │ ├── Core.php │ │ │ ├── Decoders/ │ │ │ │ ├── AbstractDecoder.php │ │ │ │ ├── Base64ImageDecoder.php │ │ │ │ ├── BinaryImageDecoder.php │ │ │ │ ├── DataUriImageDecoder.php │ │ │ │ ├── EncodedImageObjectDecoder.php │ │ │ │ ├── FilePathImageDecoder.php │ │ │ │ ├── FilePointerImageDecoder.php │ │ │ │ ├── NativeObjectDecoder.php │ │ │ │ └── SplFileInfoImageDecoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoders/ │ │ │ │ ├── AvifEncoder.php │ │ │ │ ├── BmpEncoder.php │ │ │ │ ├── GifEncoder.php │ │ │ │ ├── JpegEncoder.php │ │ │ │ ├── PngEncoder.php │ │ │ │ └── WebpEncoder.php │ │ │ ├── FontProcessor.php │ │ │ ├── Frame.php │ │ │ └── Modifiers/ │ │ │ ├── AlignRotationModifier.php │ │ │ ├── BlendTransparencyModifier.php │ │ │ ├── BlurModifier.php │ │ │ ├── BrightnessModifier.php │ │ │ ├── ColorizeModifier.php │ │ │ ├── ColorspaceModifier.php │ │ │ ├── ContainModifier.php │ │ │ ├── ContrastModifier.php │ │ │ ├── CoverDownModifier.php │ │ │ ├── CoverModifier.php │ │ │ ├── CropModifier.php │ │ │ ├── DrawBezierModifier.php │ │ │ ├── DrawEllipseModifier.php │ │ │ ├── DrawLineModifier.php │ │ │ ├── DrawPixelModifier.php │ │ │ ├── DrawPolygonModifier.php │ │ │ ├── DrawRectangleModifier.php │ │ │ ├── FillModifier.php │ │ │ ├── FlipModifier.php │ │ │ ├── FlopModifier.php │ │ │ ├── GammaModifier.php │ │ │ ├── GreyscaleModifier.php │ │ │ ├── InvertModifier.php │ │ │ ├── PadModifier.php │ │ │ ├── PixelateModifier.php │ │ │ ├── PlaceModifier.php │ │ │ ├── ProfileModifier.php │ │ │ ├── ProfileRemovalModifier.php │ │ │ ├── QuantizeColorsModifier.php │ │ │ ├── RemoveAnimationModifier.php │ │ │ ├── ResizeCanvasModifier.php │ │ │ ├── ResizeCanvasRelativeModifier.php │ │ │ ├── ResizeDownModifier.php │ │ │ ├── ResizeModifier.php │ │ │ ├── ResolutionModifier.php │ │ │ ├── RotateModifier.php │ │ │ ├── ScaleDownModifier.php │ │ │ ├── ScaleModifier.php │ │ │ ├── SharpenModifier.php │ │ │ ├── SliceAnimationModifier.php │ │ │ ├── TextModifier.php │ │ │ └── TrimModifier.php │ │ ├── Imagick/ │ │ │ ├── Analyzers/ │ │ │ │ ├── ColorspaceAnalyzer.php │ │ │ │ ├── HeightAnalyzer.php │ │ │ │ ├── PixelColorAnalyzer.php │ │ │ │ ├── PixelColorsAnalyzer.php │ │ │ │ ├── ProfileAnalyzer.php │ │ │ │ ├── ResolutionAnalyzer.php │ │ │ │ └── WidthAnalyzer.php │ │ │ ├── ColorProcessor.php │ │ │ ├── Core.php │ │ │ ├── Decoders/ │ │ │ │ ├── Base64ImageDecoder.php │ │ │ │ ├── BinaryImageDecoder.php │ │ │ │ ├── DataUriImageDecoder.php │ │ │ │ ├── EncodedImageObjectDecoder.php │ │ │ │ ├── FilePathImageDecoder.php │ │ │ │ ├── FilePointerImageDecoder.php │ │ │ │ ├── NativeObjectDecoder.php │ │ │ │ └── SplFileInfoImageDecoder.php │ │ │ ├── Driver.php │ │ │ ├── Encoders/ │ │ │ │ ├── AvifEncoder.php │ │ │ │ ├── BmpEncoder.php │ │ │ │ ├── GifEncoder.php │ │ │ │ ├── HeicEncoder.php │ │ │ │ ├── Jpeg2000Encoder.php │ │ │ │ ├── JpegEncoder.php │ │ │ │ ├── PngEncoder.php │ │ │ │ ├── TiffEncoder.php │ │ │ │ └── WebpEncoder.php │ │ │ ├── FontProcessor.php │ │ │ ├── Frame.php │ │ │ └── Modifiers/ │ │ │ ├── AlignRotationModifier.php │ │ │ ├── BlendTransparencyModifier.php │ │ │ ├── BlurModifier.php │ │ │ ├── BrightnessModifier.php │ │ │ ├── ColorizeModifier.php │ │ │ ├── ColorspaceModifier.php │ │ │ ├── ContainModifier.php │ │ │ ├── ContrastModifier.php │ │ │ ├── CoverDownModifier.php │ │ │ ├── CoverModifier.php │ │ │ ├── CropModifier.php │ │ │ ├── DrawBezierModifier.php │ │ │ ├── DrawEllipseModifier.php │ │ │ ├── DrawLineModifier.php │ │ │ ├── DrawPixelModifier.php │ │ │ ├── DrawPolygonModifier.php │ │ │ ├── DrawRectangleModifier.php │ │ │ ├── FillModifier.php │ │ │ ├── FlipModifier.php │ │ │ ├── FlopModifier.php │ │ │ ├── GammaModifier.php │ │ │ ├── GreyscaleModifier.php │ │ │ ├── InvertModifier.php │ │ │ ├── PadModifier.php │ │ │ ├── PixelateModifier.php │ │ │ ├── PlaceModifier.php │ │ │ ├── ProfileModifier.php │ │ │ ├── ProfileRemovalModifier.php │ │ │ ├── QuantizeColorsModifier.php │ │ │ ├── RemoveAnimationModifier.php │ │ │ ├── ResizeCanvasModifier.php │ │ │ ├── ResizeCanvasRelativeModifier.php │ │ │ ├── ResizeDownModifier.php │ │ │ ├── ResizeModifier.php │ │ │ ├── ResolutionModifier.php │ │ │ ├── RotateModifier.php │ │ │ ├── ScaleDownModifier.php │ │ │ ├── ScaleModifier.php │ │ │ ├── SharpenModifier.php │ │ │ ├── SliceAnimationModifier.php │ │ │ ├── StripMetaModifier.php │ │ │ ├── TextModifier.php │ │ │ └── TrimModifier.php │ │ ├── Specializable.php │ │ ├── SpecializableAnalyzer.php │ │ ├── SpecializableDecoder.php │ │ ├── SpecializableEncoder.php │ │ └── SpecializableModifier.php │ ├── EncodedImage.php │ ├── Encoders/ │ │ ├── AutoEncoder.php │ │ ├── AvifEncoder.php │ │ ├── BmpEncoder.php │ │ ├── FileExtensionEncoder.php │ │ ├── FilePathEncoder.php │ │ ├── GifEncoder.php │ │ ├── HeicEncoder.php │ │ ├── Jpeg2000Encoder.php │ │ ├── JpegEncoder.php │ │ ├── MediaTypeEncoder.php │ │ ├── PngEncoder.php │ │ ├── TiffEncoder.php │ │ └── WebpEncoder.php │ ├── Exceptions/ │ │ ├── AnimationException.php │ │ ├── ColorException.php │ │ ├── DecoderException.php │ │ ├── DriverException.php │ │ ├── EncoderException.php │ │ ├── FontException.php │ │ ├── GeometryException.php │ │ ├── InputException.php │ │ ├── NotSupportedException.php │ │ ├── NotWritableException.php │ │ └── RuntimeException.php │ ├── File.php │ ├── FileExtension.php │ ├── Format.php │ ├── Geometry/ │ │ ├── Bezier.php │ │ ├── Circle.php │ │ ├── Ellipse.php │ │ ├── Factories/ │ │ │ ├── BezierFactory.php │ │ │ ├── CircleFactory.php │ │ │ ├── Drawable.php │ │ │ ├── EllipseFactory.php │ │ │ ├── LineFactory.php │ │ │ ├── PolygonFactory.php │ │ │ └── RectangleFactory.php │ │ ├── Line.php │ │ ├── Pixel.php │ │ ├── Point.php │ │ ├── Polygon.php │ │ ├── Rectangle.php │ │ ├── Tools/ │ │ │ └── RectangleResizer.php │ │ └── Traits/ │ │ ├── HasBackgroundColor.php │ │ └── HasBorder.php │ ├── Image.php │ ├── ImageManager.php │ ├── InputHandler.php │ ├── Interfaces/ │ │ ├── AnalyzerInterface.php │ │ ├── CollectionInterface.php │ │ ├── ColorChannelInterface.php │ │ ├── ColorInterface.php │ │ ├── ColorProcessorInterface.php │ │ ├── ColorspaceInterface.php │ │ ├── CoreInterface.php │ │ ├── DecoderInterface.php │ │ ├── DrawableFactoryInterface.php │ │ ├── DrawableInterface.php │ │ ├── DriverInterface.php │ │ ├── EncodedImageInterface.php │ │ ├── EncoderInterface.php │ │ ├── FileInterface.php │ │ ├── FontInterface.php │ │ ├── FontProcessorInterface.php │ │ ├── FrameInterface.php │ │ ├── ImageInterface.php │ │ ├── ImageManagerInterface.php │ │ ├── InputHandlerInterface.php │ │ ├── ModifierInterface.php │ │ ├── PointInterface.php │ │ ├── ProfileInterface.php │ │ ├── ResolutionInterface.php │ │ ├── SizeInterface.php │ │ ├── SpecializableInterface.php │ │ └── SpecializedInterface.php │ ├── MediaType.php │ ├── ModifierStack.php │ ├── Modifiers/ │ │ ├── AbstractDrawModifier.php │ │ ├── AlignRotationModifier.php │ │ ├── BlendTransparencyModifier.php │ │ ├── BlurModifier.php │ │ ├── BrightnessModifier.php │ │ ├── ColorizeModifier.php │ │ ├── ColorspaceModifier.php │ │ ├── ContainModifier.php │ │ ├── ContrastModifier.php │ │ ├── CoverDownModifier.php │ │ ├── CoverModifier.php │ │ ├── CropModifier.php │ │ ├── DrawBezierModifier.php │ │ ├── DrawEllipseModifier.php │ │ ├── DrawLineModifier.php │ │ ├── DrawPixelModifier.php │ │ ├── DrawPolygonModifier.php │ │ ├── DrawRectangleModifier.php │ │ ├── FillModifier.php │ │ ├── FlipModifier.php │ │ ├── FlopModifier.php │ │ ├── GammaModifier.php │ │ ├── GreyscaleModifier.php │ │ ├── InvertModifier.php │ │ ├── PadModifier.php │ │ ├── PixelateModifier.php │ │ ├── PlaceModifier.php │ │ ├── ProfileModifier.php │ │ ├── ProfileRemovalModifier.php │ │ ├── QuantizeColorsModifier.php │ │ ├── RemoveAnimationModifier.php │ │ ├── ResizeCanvasModifier.php │ │ ├── ResizeCanvasRelativeModifier.php │ │ ├── ResizeDownModifier.php │ │ ├── ResizeModifier.php │ │ ├── ResolutionModifier.php │ │ ├── RotateModifier.php │ │ ├── ScaleDownModifier.php │ │ ├── ScaleModifier.php │ │ ├── SharpenModifier.php │ │ ├── SliceAnimationModifier.php │ │ ├── TextModifier.php │ │ └── TrimModifier.php │ ├── Origin.php │ ├── Resolution.php │ ├── Traits/ │ │ ├── CanBeDriverSpecialized.php │ │ └── CanBuildFilePointer.php │ └── Typography/ │ ├── Font.php │ ├── FontFactory.php │ ├── Line.php │ └── TextBlock.php └── tests/ ├── BaseTestCase.php ├── Feature/ │ ├── Gd/ │ │ └── ConvertPngGif.php │ └── Imagick/ │ ├── ConvertPngGif.php │ └── CropResizePngTest.php ├── GdTestCase.php ├── ImagickTestCase.php ├── Traits/ │ ├── CanDetectProgressiveJpeg.php │ └── CanInspectPngFormat.php └── Unit/ ├── CollectionTest.php ├── Colors/ │ ├── Cmyk/ │ │ ├── ChannelTest.php │ │ ├── ColorTest.php │ │ ├── ColorspaceTest.php │ │ └── Decoders/ │ │ └── StringColorDecoderTest.php │ ├── Hsl/ │ │ ├── ChannelTest.php │ │ ├── Channels/ │ │ │ └── SaturationTest.php │ │ ├── ColorTest.php │ │ ├── ColorspaceTest.php │ │ └── Decoders/ │ │ └── StringColorDecoderTest.php │ ├── Hsv/ │ │ ├── ChannelTest.php │ │ ├── Channels/ │ │ │ ├── SaturationTest.php │ │ │ └── ValueTest.php │ │ ├── ColorTest.php │ │ ├── ColorspaceTest.php │ │ └── Decoders/ │ │ └── StringColorDecoderTest.php │ ├── ProfileTest.php │ └── Rgb/ │ ├── ChannelTest.php │ ├── Channels/ │ │ └── AlphaTest.php │ ├── ColorTest.php │ ├── ColorspaceTest.php │ └── Decoders/ │ ├── HexColorDecoderTest.php │ ├── HtmlColornameDecoderTest.php │ └── StringColorDecoderTest.php ├── ConfigTest.php ├── Drivers/ │ ├── AbstractDecoderTest.php │ ├── AbstractEncoderTest.php │ ├── AbstractFontProcessorTest.php │ ├── Gd/ │ │ ├── Analyzers/ │ │ │ ├── ColorspaceAnalyzerTest.php │ │ │ ├── HeightAnalyzerTest.php │ │ │ ├── PixelColorAnalyzerTest.php │ │ │ ├── PixelColorsAnalyzerTest.php │ │ │ ├── ResolutionAnalyzerTest.php │ │ │ └── WidthAnalyzerTest.php │ │ ├── ClonerTest.php │ │ ├── ColorProcessorTest.php │ │ ├── CoreTest.php │ │ ├── Decoders/ │ │ │ ├── AbstractDecoderTest.php │ │ │ ├── Base64ImageDecoderTest.php │ │ │ ├── BinaryImageDecoderTest.php │ │ │ ├── DataUriImageDecoderTest.php │ │ │ ├── EncodedImageObjectDecoderTest.php │ │ │ ├── FilePathImageDecoderTest.php │ │ │ ├── FilePointerImageDecoderTest.php │ │ │ ├── ImageObjectDecoderTest.php │ │ │ ├── NativeObjectDecoderTest.php │ │ │ └── SplFileInfoImageDecoderTest.php │ │ ├── DriverTest.php │ │ ├── Encoders/ │ │ │ ├── AvifEncoderTest.php │ │ │ ├── BmpEncoderTest.php │ │ │ ├── GifEncoderTest.php │ │ │ ├── JpegEncoderTest.php │ │ │ ├── PngEncoderTest.php │ │ │ └── WebpEncoderTest.php │ │ ├── FontProcessorTest.php │ │ ├── FrameTest.php │ │ ├── ImageTest.php │ │ └── Modifiers/ │ │ ├── BlurModifierTest.php │ │ ├── BrightnessModifierTest.php │ │ ├── ColorizeModifierTest.php │ │ ├── ContainModifierTest.php │ │ ├── ContrastModifierTest.php │ │ ├── CoverDownModifierTest.php │ │ ├── CoverModifierTest.php │ │ ├── CropModifierTest.php │ │ ├── DrawBezierModifierTest.php │ │ ├── DrawEllipseModifierTest.php │ │ ├── DrawLineModifierTest.php │ │ ├── DrawPixelModifierTest.php │ │ ├── DrawPolygonModifierTest.php │ │ ├── DrawRectangleModifierTest.php │ │ ├── FillModifierTest.php │ │ ├── FlipFlopModifierTest.php │ │ ├── GammaModifierTest.php │ │ ├── GreyscaleModifierTest.php │ │ ├── InvertModifierTest.php │ │ ├── PadModifierTest.php │ │ ├── PixelateModifierTest.php │ │ ├── PlaceModifierTest.php │ │ ├── QuantizeColorsModifierTest.php │ │ ├── RemoveAnimationModifierTest.php │ │ ├── ResizeCanvasModifierTest.php │ │ ├── ResizeCanvasRelativeModifierTest.php │ │ ├── ResizeModifierTest.php │ │ ├── ResolutionModifierTest.php │ │ ├── RotateModifierTest.php │ │ ├── SharpenModifierTest.php │ │ ├── TextModifierTest.php │ │ └── TrimModifierTest.php │ ├── Imagick/ │ │ ├── Analyzers/ │ │ │ ├── ColorspaceAnalyzerTest.php │ │ │ ├── HeightAnalyzerTest.php │ │ │ ├── PixelColorAnalyzerTest.php │ │ │ ├── PixelColorsAnalyzerTest.php │ │ │ ├── ProfileAnalyzerTest.php │ │ │ ├── ResolutionAnalyzerTest.php │ │ │ └── WidthAnalyzerTest.php │ │ ├── ColorProcessorTest.php │ │ ├── CoreTest.php │ │ ├── Decoders/ │ │ │ ├── Base64ImageDecoderTest.php │ │ │ ├── BinaryImageDecoderTest.php │ │ │ ├── DataUriImageDecoderTest.php │ │ │ ├── EncodedImageObjectDecoderTest.php │ │ │ ├── FilePathImageDecoderTest.php │ │ │ ├── FilePointerImageDecoderTest.php │ │ │ ├── ImageObjectDecoderTest.php │ │ │ ├── NativeObjectDecoderTest.php │ │ │ └── SplFileInfoImageDecoderTest.php │ │ ├── DriverTest.php │ │ ├── Encoders/ │ │ │ ├── AvifEncoderTest.php │ │ │ ├── BmpEncoderTest.php │ │ │ ├── GifEncoderTest.php │ │ │ ├── HeicEncoderTest.php │ │ │ ├── Jpeg2000EncoderTest.php │ │ │ ├── JpegEncoderTest.php │ │ │ ├── PngEncoderTest.php │ │ │ ├── TiffEncoderTest.php │ │ │ └── WebpEncoderTest.php │ │ ├── FontProcessorTest.php │ │ ├── FrameTest.php │ │ ├── ImageTest.php │ │ └── Modifiers/ │ │ ├── BlurModifierTest.php │ │ ├── BrightnessModifierTest.php │ │ ├── ColorizeModifierTest.php │ │ ├── ContainModifierTest.php │ │ ├── ContrastModifierTest.php │ │ ├── CoverDownModifierTest.php │ │ ├── CoverModifierTest.php │ │ ├── CropModifierTest.php │ │ ├── DrawBezierModifierTest.php │ │ ├── DrawEllipseModifierTest.php │ │ ├── DrawLineModifierTest.php │ │ ├── DrawPixelModifierTest.php │ │ ├── DrawPolygonModifierTest.php │ │ ├── DrawRectangleModifierTest.php │ │ ├── FillModifierTest.php │ │ ├── FlipFlopModifierTest.php │ │ ├── GammaModifierTest.php │ │ ├── GreyscaleModifierTest.php │ │ ├── InvertModifierTest.php │ │ ├── PadModifierTest.php │ │ ├── PixelateModifierTest.php │ │ ├── PlaceModifierTest.php │ │ ├── QuantizeColorsModifierTest.php │ │ ├── RemoveAnimationModifierTest.php │ │ ├── ResizeCanvasModifierTest.php │ │ ├── ResizeCanvasRelativeModifierTest.php │ │ ├── ResizeModifierTest.php │ │ ├── ResolutionModifierTest.php │ │ ├── RotateModifierTest.php │ │ ├── SharpenModifierTest.php │ │ ├── StripMetaModifierTest.php │ │ ├── TextModifierTest.php │ │ └── TrimModifierTest.php │ ├── SpecializableAnalyzerTest.php │ ├── SpecializableDecoderTest.php │ └── SpecializableModifierTest.php ├── EncodedImageTest.php ├── Encoders/ │ ├── FileExtensionEncoderTest.php │ └── MediaTypeEncoderTest.php ├── FileExtensionTest.php ├── FileTest.php ├── FormatTest.php ├── Geometry/ │ ├── BezierTest.php │ ├── CircleTest.php │ ├── EllipseTest.php │ ├── Factories/ │ │ ├── BezierFactoryTest.php │ │ ├── CircleFactoryTest.php │ │ ├── DrawableTest.php │ │ ├── EllipseFactoryTest.php │ │ ├── LineFactoryTest.php │ │ ├── PolygonFactoryTest.php │ │ └── RectangleFactoryTest.php │ ├── LineTest.php │ ├── PixelTest.php │ ├── PointTest.php │ ├── PolygonTest.php │ ├── RectangleResizerTest.php │ ├── RectangleTest.php │ └── Traits/ │ ├── HasBackgroundColorTest.php │ └── HasBorderTest.php ├── ImageManagerTestGd.php ├── ImageManagerTestImagick.php ├── InputHandlerTest.php ├── MediaTypeTest.php ├── ModifierStackTest.php ├── Modifiers/ │ ├── ColorspaceModifierTest.php │ ├── PadModifierTest.php │ ├── RemoveAnimationModifierTest.php │ └── TextModifierTest.php ├── OriginTest.php ├── ResolutionTest.php └── Typography/ ├── FontFactoryTest.php ├── FontTest.php ├── LineTest.php └── TextBlockTest.php