repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Hsl/Color.php
src/Colors/Hsl/Color.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Hsl; use Intervention\Image\Colors\AbstractColor; use Intervention\Image\Colors\Hsl\Channels\Hue; use Intervention\Image\Colors\Hsl\Channels\Luminance; use Intervention\Image\Colors\Hsl\Channels\Saturation; use Intervention\Image\Colors\Rgb\Colorspac...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Hsl/Channels/Saturation.php
src/Colors/Hsl/Channels/Saturation.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Hsl\Channels; use Intervention\Image\Colors\AbstractColorChannel; class Saturation extends AbstractColorChannel { /** * {@inheritdoc} * * @see ColorChannelInterface::min() */ public function min(): int { retur...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Hsl/Channels/Luminance.php
src/Colors/Hsl/Channels/Luminance.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Hsl\Channels; use Intervention\Image\Colors\AbstractColorChannel; class Luminance extends AbstractColorChannel { /** * {@inheritdoc} * * @see ColorChannelInterface::min() */ public function min(): int { return...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Hsl/Channels/Hue.php
src/Colors/Hsl/Channels/Hue.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Hsl\Channels; use Intervention\Image\Colors\AbstractColorChannel; class Hue extends AbstractColorChannel { /** * {@inheritdoc} * * @see ColorChannelInterface::min() */ public function min(): int { return 0; ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Hsl/Decoders/StringColorDecoder.php
src/Colors/Hsl/Decoders/StringColorDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Hsl\Decoders; use Intervention\Image\Colors\Hsl\Color; use Intervention\Image\Drivers\AbstractDecoder; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInte...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Colorspace.php
src/Colors/Rgb/Colorspace.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb; use Intervention\Image\Colors\Hsv\Color as HsvColor; use Intervention\Image\Colors\Hsl\Color as HslColor; use Intervention\Image\Colors\Cmyk\Color as CmykColor; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Interfaces\...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Color.php
src/Colors/Rgb/Color.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb; use Intervention\Image\Colors\AbstractColor; use Intervention\Image\Colors\Rgb\Channels\Blue; use Intervention\Image\Colors\Rgb\Channels\Green; use Intervention\Image\Colors\Rgb\Channels\Red; use Intervention\Image\Colors\Rgb\Channels\Alpha; use...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Channels/Blue.php
src/Colors/Rgb/Channels/Blue.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Channels; class Blue extends Red { // }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Channels/Green.php
src/Colors/Rgb/Channels/Green.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Channels; class Green extends Red { // }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Channels/Alpha.php
src/Colors/Rgb/Channels/Alpha.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Channels; class Alpha extends Red { /** * {@inheritdoc} * * @see ColorChannelInterface::toString() */ public function toString(): string { return strval(round($this->normalize(), 6)); } }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Channels/Red.php
src/Colors/Rgb/Channels/Red.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Channels; use Intervention\Image\Colors\AbstractColorChannel; class Red extends AbstractColorChannel { /** * {@inheritdoc} * * @see ColorChannelInterface::min() */ public function min(): int { return 0; ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Decoders/StringColorDecoder.php
src/Colors/Rgb/Decoders/StringColorDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Decoders; use Intervention\Image\Colors\Rgb\Color; use Intervention\Image\Drivers\AbstractDecoder; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInte...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Decoders/TransparentColorDecoder.php
src/Colors/Rgb/Decoders/TransparentColorDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Decoders; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\ColorInterface; class TransparentColorDecoder extends HexColorDecoder { /** * {@inheritdoc...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Decoders/HexColorDecoder.php
src/Colors/Rgb/Decoders/HexColorDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Decoders; use Intervention\Image\Colors\Rgb\Color; use Intervention\Image\Drivers\AbstractDecoder; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInte...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Rgb/Decoders/HtmlColornameDecoder.php
src/Colors/Rgb/Decoders/HtmlColornameDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Rgb\Decoders; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInterface; use Intervention\Image\Interfaces\ImageInterface; class HtmlColornameDecoder exte...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Cmyk/Colorspace.php
src/Colors/Cmyk/Colorspace.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Cmyk; use Intervention\Image\Colors\Rgb\Color as RgbColor; use Intervention\Image\Colors\Cmyk\Color as CmykColor; use Intervention\Image\Colors\Hsv\Color as HsvColor; use Intervention\Image\Colors\Hsl\Color as HslColor; use Intervention\Image\Colors\...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Cmyk/Color.php
src/Colors/Cmyk/Color.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Cmyk; use Intervention\Image\Colors\AbstractColor; use Intervention\Image\Colors\Cmyk\Channels\Cyan; use Intervention\Image\Colors\Cmyk\Channels\Magenta; use Intervention\Image\Colors\Cmyk\Channels\Yellow; use Intervention\Image\Colors\Cmyk\Channels\...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Cmyk/Channels/Magenta.php
src/Colors/Cmyk/Channels/Magenta.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Cmyk\Channels; class Magenta extends Cyan { // }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Cmyk/Channels/Yellow.php
src/Colors/Cmyk/Channels/Yellow.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Cmyk\Channels; class Yellow extends Cyan { // }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Cmyk/Channels/Cyan.php
src/Colors/Cmyk/Channels/Cyan.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Cmyk\Channels; use Intervention\Image\Colors\AbstractColorChannel; class Cyan extends AbstractColorChannel { public function min(): int { return 0; } public function max(): int { return 100; } }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Cmyk/Channels/Key.php
src/Colors/Cmyk/Channels/Key.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Cmyk\Channels; class Key extends Cyan { // }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Colors/Cmyk/Decoders/StringColorDecoder.php
src/Colors/Cmyk/Decoders/StringColorDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Colors\Cmyk\Decoders; use Intervention\Image\Colors\Cmyk\Color; use Intervention\Image\Drivers\AbstractDecoder; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderIn...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/EncodedImageInterface.php
src/Interfaces/EncodedImageInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface EncodedImageInterface extends FileInterface { /** * Return Media (MIME) Type of encoded image */ public function mediaType(): string; /** * Alias of self::mediaType() */ public function mimetype(): ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/DrawableFactoryInterface.php
src/Interfaces/DrawableFactoryInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Closure; interface DrawableFactoryInterface { /** * Create a new factory instance statically */ public static function init(null|Closure|DrawableInterface $init = null): self; /** * Create the end product of the ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/SizeInterface.php
src/Interfaces/SizeInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\GeometryException; interface SizeInterface { /** * Get width */ public function width(): int; /** * Get height */ public function height(): int; /** * Get pivot po...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/SpecializableInterface.php
src/Interfaces/SpecializableInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\DriverException; interface SpecializableInterface { /** * Return an array of constructor parameters, which is usually passed from * the generic object to the specialized object * * @retu...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ProfileInterface.php
src/Interfaces/ProfileInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface ProfileInterface { /** * Cast color profile object to string */ public function __toString(): string; }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/CollectionInterface.php
src/Interfaces/CollectionInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Traversable; /** * @extends Traversable<int|string, mixed> */ interface CollectionInterface extends Traversable { /** * Determine if the collection has item at given key */ public function has(int|string $key): bool; ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/FileInterface.php
src/Interfaces/FileInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface FileInterface { /** * Save data in given path in file system * * @throws RuntimeException */ public function save(string $filepath): void; /** *...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/SpecializedInterface.php
src/Interfaces/SpecializedInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface SpecializedInterface { // }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/InputHandlerInterface.php
src/Interfaces/InputHandlerInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface InputHandlerInterface { /** * Try to decode the given input with each decoder of the the handler chain * * @throws RuntimeException */ public function han...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/DecoderInterface.php
src/Interfaces/DecoderInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface DecoderInterface { /** * Decode given input either to color or image * * @throws RuntimeException */ public function decode(mixed $input): ImageInterface|...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/DriverInterface.php
src/Interfaces/DriverInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Config; use Intervention\Image\Exceptions\DriverException; use Intervention\Image\Exceptions\NotSupportedException; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\FileExtension; use Intervention...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ColorChannelInterface.php
src/Interfaces/ColorChannelInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\ColorException; interface ColorChannelInterface { /** * Create new instance by either value or normalized value * * @throws ColorException */ public function __construct(?int $value ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ImageManagerInterface.php
src/Interfaces/ImageManagerInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface ImageManagerInterface { /** * Create new image instance with given width & height * * @link https://image.intervention.io/v3/basics/instantiation#create-new-images...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ModifierInterface.php
src/Interfaces/ModifierInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface ModifierInterface { /** * Apply modifications of the current modifier to the given image * * @throws RuntimeException */ public function apply(ImageInterf...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/FontInterface.php
src/Interfaces/FontInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\FontException; interface FontInterface { /** * Set color of font */ public function setColor(mixed $color): self; /** * Get color of font */ public function color(): mixed; ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ImageInterface.php
src/Interfaces/ImageInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Closure; use Countable; use Intervention\Image\Encoders\AutoEncoder; use Intervention\Image\Exceptions\AnimationException; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\FileExtension; use Intervention\Image\Geome...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/FontProcessorInterface.php
src/Interfaces/FontProcessorInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\FontException; use Intervention\Image\Typography\TextBlock; interface FontProcessorInterface { /** * Calculate size of bounding box of given text in conjunction with the given font * * @throw...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ColorInterface.php
src/Interfaces/ColorInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Exceptions\RuntimeException; interface ColorInterface { /** * Static color factory method that takes any supported color format * and returns a corresponding...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/CoreInterface.php
src/Interfaces/CoreInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\AnimationException; interface CoreInterface extends CollectionInterface { /** * return driver's representation of the image core. * * @throws AnimationException */ public function na...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/FrameInterface.php
src/Interfaces/FrameInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface FrameInterface { /** * Return image data of frame in driver specific format */ public function native(): mixed; /** * Set image data of drame in driver sp...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ColorspaceInterface.php
src/Interfaces/ColorspaceInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface ColorspaceInterface { /** * Convert given color to the format of the current colorspace */ public function importColor(ColorInterface $color): ColorInterface; /** * Create new color in colorspace from given ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/DrawableInterface.php
src/Interfaces/DrawableInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface DrawableInterface { /** * Position of the drawable object */ public function position(): PointInterface; /** * Set position of the drawable object */ public function setPosition(PointInterface $posi...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/EncoderInterface.php
src/Interfaces/EncoderInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface EncoderInterface { /** * Encode given image * * @throws RuntimeException */ public function encode(ImageInterface $image): EncodedImageInterface; }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ResolutionInterface.php
src/Interfaces/ResolutionInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface ResolutionInterface { /** * Return resolution of x-axis */ public function x(): float; /** * Set resolution on x-axis */ public function setX(float $x): self; /** * Return resolution on y-...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/PointInterface.php
src/Interfaces/PointInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface PointInterface { /** * Return x position */ public function x(): int; /** * Return y position */ public function y(): int; /** * Set x position */ public function setX(int $x): se...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/ColorProcessorInterface.php
src/Interfaces/ColorProcessorInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\ColorException; interface ColorProcessorInterface { /** * Turn given color in the driver's color implementation * * @throws ColorException */ public function colorToNative(ColorInter...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Interfaces/AnalyzerInterface.php
src/Interfaces/AnalyzerInterface.php
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; use Intervention\Image\Exceptions\RuntimeException; interface AnalyzerInterface { /** * Analyze given image and return the retrieved data * * @throws RuntimeException */ public function analyze(ImageInterface $image)...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/SpecializableAnalyzer.php
src/Drivers/SpecializableAnalyzer.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Interfaces\AnalyzerInterface; use Intervention\Image\Interfaces\ImageInterface; abstract class SpecializableAnalyzer extends Specializable implements AnalyzerInterface { /** * {@inheritdoc} * * @see Analyz...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/SpecializableDecoder.php
src/Drivers/SpecializableDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializableInterface; use Intervention\Image\Traits\CanBeDri...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/SpecializableModifier.php
src/Drivers/SpecializableModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\ModifierInterface; abstract class SpecializableModifier extends Specializable implements ModifierInterface { /** * {@inheritdoc} * * @see Modifi...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/AbstractEncoder.php
src/Drivers/AbstractEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\EncodedImage; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Interfaces\EncodedImageInterface; use Intervention\Image\Interfaces\EncoderInterface; use Intervention\Image\Interfaces\ImageInterface; ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/AbstractDecoder.php
src/Drivers/AbstractDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Exception; use Intervention\Image\Collection; use Intervention\Image\Interfaces\CollectionInterface; use Intervention\Image\Interfaces\DecoderInterface; use Intervention\Image\Traits\CanBuildFilePointer; abstract class AbstractDecoder implemen...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/AbstractFrame.php
src/Drivers/AbstractFrame.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Interfaces\FrameInterface; abstract class AbstractFrame implements FrameInterface { /** * Show debug info for the current image * * @return array<string, mixed> */ public function __debugInfo(): a...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Specializable.php
src/Drivers/Specializable.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Interfaces\SpecializableInterface; use Intervention\Image\Traits\CanBeDriverSpecialized; abstract class Specializable implements SpecializableInterface { use CanBeDriverSpecialized; }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/SpecializableEncoder.php
src/Drivers/SpecializableEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Interfaces\SpecializableInterface; use Intervention\Image\Traits\CanBeDriverSpecialized; abstract class SpecializableEncoder extends AbstractEncoder implements SpecializableInterface { use CanBeDriverSpecialized; }
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/AbstractFontProcessor.php
src/Drivers/AbstractFontProcessor.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Exceptions\FontException; use Intervention\Image\Geometry\Point; use Intervention\Image\Geometry\Rectangle; use Intervention\Image\Interfaces\FontInterface; use Intervention\Image\Interfaces\FontProcessorInterface; use Interv...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/AbstractDriver.php
src/Drivers/AbstractDriver.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers; use Intervention\Image\Config; use Intervention\Image\Exceptions\DriverException; use Intervention\Image\Exceptions\NotSupportedException; use Intervention\Image\InputHandler; use Intervention\Image\Interfaces\AnalyzerInterface; use Intervention\Im...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Frame.php
src/Drivers/Gd/Frame.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd; use GdImage; use Intervention\Image\Drivers\AbstractFrame; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Exceptions\InputException; use Intervention\Image\Geometry\Rectangle; use Intervention\Image\Image; use Intervent...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Core.php
src/Drivers/Gd/Core.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd; use Intervention\Image\Collection; use Intervention\Image\Exceptions\AnimationException; use Intervention\Image\Interfaces\CoreInterface; use Intervention\Image\Interfaces\FrameInterface; class Core extends Collection implements CoreInterface {...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/FontProcessor.php
src/Drivers/Gd/FontProcessor.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd; use Intervention\Image\Drivers\AbstractFontProcessor; use Intervention\Image\Exceptions\FontException; use Intervention\Image\Geometry\Point; use Intervention\Image\Geometry\Rectangle; use Intervention\Image\Interfaces\FontInterface; use Interve...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Cloner.php
src/Drivers/Gd/Cloner.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd; use GdImage; use Intervention\Image\Colors\Rgb\Channels\Alpha; use Intervention\Image\Colors\Rgb\Color; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Geometry\Rectangle; use Intervention\Image\Interfaces\ColorInterface...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/ColorProcessor.php
src/Drivers/Gd/ColorProcessor.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd; use Intervention\Image\Colors\Rgb\Channels\Alpha; use Intervention\Image\Colors\Rgb\Channels\Blue; use Intervention\Image\Colors\Rgb\Channels\Green; use Intervention\Image\Colors\Rgb\Channels\Red; use Intervention\Image\Colors\Rgb\Color; use Int...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Driver.php
src/Drivers/Gd/Driver.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd; use Intervention\Image\Drivers\AbstractDriver; use Intervention\Image\Exceptions\DriverException; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Format; use Intervention\Image\FileExtension; use Intervention\Image\Ima...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Encoders/BmpEncoder.php
src/Drivers/Gd/Encoders/BmpEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Encoders; use Intervention\Image\EncodedImage; use Intervention\Image\Encoders\BmpEncoder as GenericBmpEncoder; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; class BmpEncoder extends Ge...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Encoders/PngEncoder.php
src/Drivers/Gd/Encoders/PngEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Encoders; use GdImage; use Intervention\Image\Drivers\Gd\Cloner; use Intervention\Image\EncodedImage; use Intervention\Image\Encoders\PngEncoder as GenericPngEncoder; use Intervention\Image\Exceptions\AnimationException; use Intervention\Image\Ex...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Encoders/JpegEncoder.php
src/Drivers/Gd/Encoders/JpegEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Encoders; use Intervention\Image\Drivers\Gd\Cloner; use Intervention\Image\Encoders\JpegEncoder as GenericJpegEncoder; use Intervention\Image\EncodedImage; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\Specia...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Encoders/AvifEncoder.php
src/Drivers/Gd/Encoders/AvifEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Encoders; use Intervention\Image\EncodedImage; use Intervention\Image\Encoders\AvifEncoder as GenericAvifEncoder; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; class AvifEncoder extends...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Encoders/GifEncoder.php
src/Drivers/Gd/Encoders/GifEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Encoders; use Exception; use Intervention\Gif\Builder as GifBuilder; use Intervention\Image\Drivers\Gd\Cloner; use Intervention\Image\EncodedImage; use Intervention\Image\Encoders\GifEncoder as GenericGifEncoder; use Intervention\Image\Exceptions...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Encoders/WebpEncoder.php
src/Drivers/Gd/Encoders/WebpEncoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Encoders; use Intervention\Image\EncodedImage; use Intervention\Image\Encoders\WebpEncoder as GenericWebpEncoder; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; class WebpEncoder extends...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/DataUriImageDecoder.php
src/Drivers/Gd/Decoders/DataUriImageDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInterface; use Intervention\Image\Interfaces\ImageInterface; class DataUriImageDecoder exten...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/FilePointerImageDecoder.php
src/Drivers/Gd/Decoders/FilePointerImageDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\ImageInterface; class FilePointerImageDecoder extends BinaryImageDecoder { /** * {@inherit...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/BinaryImageDecoder.php
src/Drivers/Gd/Decoders/BinaryImageDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInterface; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Exception...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/FilePathImageDecoder.php
src/Drivers/Gd/Decoders/FilePathImageDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Format; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInterface; use Intervention\Image\Interfaces\ImageInterface; u...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/SplFileInfoImageDecoder.php
src/Drivers/Gd/Decoders/SplFileInfoImageDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use SplFileInfo; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInterface; use Intervention\Image\Interfaces\ImageInterface; class SplFileI...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/EncodedImageObjectDecoder.php
src/Drivers/Gd/Decoders/EncodedImageObjectDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Intervention\Image\EncodedImage; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\ColorInterface; class EncodedImageObjectDecoder extends Binary...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/Base64ImageDecoder.php
src/Drivers/Gd/Decoders/Base64ImageDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\DecoderInterface; use Intervention\Image\Interfaces\ImageInterface; class Base64ImageDecoder extend...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/NativeObjectDecoder.php
src/Drivers/Gd/Decoders/NativeObjectDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Exception; use GdImage; use Intervention\Gif\Decoder as GifDecoder; use Intervention\Gif\Splitter as GifSplitter; use Intervention\Image\Drivers\Gd\Core; use Intervention\Image\Drivers\Gd\Frame; use Intervention\Image\Exceptions\Dec...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Decoders/AbstractDecoder.php
src/Drivers/Gd/Decoders/AbstractDecoder.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Decoders; use Intervention\Image\Drivers\SpecializableDecoder; use Intervention\Image\Exceptions\DecoderException; use Intervention\Image\Exceptions\NotSupportedException; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\I...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Analyzers/ColorspaceAnalyzer.php
src/Drivers/Gd/Analyzers/ColorspaceAnalyzer.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Analyzers; use Intervention\Image\Analyzers\ColorspaceAnalyzer as GenericColorspaceAnalyzer; use Intervention\Image\Colors\Rgb\Colorspace; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Analyzers/HeightAnalyzer.php
src/Drivers/Gd/Analyzers/HeightAnalyzer.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Analyzers; use Intervention\Image\Analyzers\HeightAnalyzer as GenericHeightAnalyzer; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; class HeightAnalyzer extends GenericHeightAnalyzer imp...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Analyzers/PixelColorsAnalyzer.php
src/Drivers/Gd/Analyzers/PixelColorsAnalyzer.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Analyzers; use Intervention\Image\Collection; use Intervention\Image\Interfaces\ImageInterface; class PixelColorsAnalyzer extends PixelColorAnalyzer { /** * {@inheritdoc} * * @see AnalyzerInterface::analyze() */ publi...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Analyzers/WidthAnalyzer.php
src/Drivers/Gd/Analyzers/WidthAnalyzer.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Analyzers; use Intervention\Image\Analyzers\WidthAnalyzer as GenericWidthAnalyzer; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; class WidthAnalyzer extends GenericWidthAnalyzer impleme...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Analyzers/ResolutionAnalyzer.php
src/Drivers/Gd/Analyzers/ResolutionAnalyzer.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Analyzers; use Intervention\Image\Analyzers\ResolutionAnalyzer as GenericResolutionAnalyzer; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Resolution; class Resol...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Analyzers/PixelColorAnalyzer.php
src/Drivers/Gd/Analyzers/PixelColorAnalyzer.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Analyzers; use GdImage; use Intervention\Image\Analyzers\PixelColorAnalyzer as GenericPixelColorAnalyzer; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Exceptions\GeometryException; use Intervention\Image\Interfaces\Col...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/BlendTransparencyModifier.php
src/Drivers/Gd/Modifiers/BlendTransparencyModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Drivers\Gd\Cloner; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Modifiers\BlendTransparencyModifier as GenericBlendTransparencyM...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/ResizeCanvasRelativeModifier.php
src/Drivers/Gd/Modifiers/ResizeCanvasRelativeModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SizeInterface; class ResizeCanvasRelativeModifier extends ResizeCanvasModifier { protected function cropSize(ImageInterface $image, bool $relative...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/DrawPixelModifier.php
src/Drivers/Gd/Modifiers/DrawPixelModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Modifiers\DrawPixelModifier as GenericDrawPixelModifier; class DrawPixelModifier extends GenericDrawPixel...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/TextModifier.php
src/Drivers/Gd/Modifiers/TextModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Exceptions\FontException; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/ResizeModifier.php
src/Drivers/Gd/Modifiers/ResizeModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Drivers\Gd\Cloner; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Exceptions\GeometryException; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Interfaces\Fram...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/DrawBezierModifier.php
src/Drivers/Gd/Modifiers/DrawBezierModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use RuntimeException; use Intervention\Image\Exceptions\GeometryException; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Modifiers\DrawBezierModifier as...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/RotateModifier.php
src/Drivers/Gd/Modifiers/RotateModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Colors\Rgb\Channels\Blue; use Intervention\Image\Colors\Rgb\Channels\Green; use Intervention\Image\Colors\Rgb\Channels\Red; use Intervention\Image\Drivers\Gd\Cloner; use Intervention\Image\Exceptions\ColorExcepti...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/PadModifier.php
src/Drivers/Gd/Modifiers/PadModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SizeInterface; class PadModifier extends ContainModifier { public function getCropSize(ImageInterface $image): SizeInterface { return ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/CropModifier.php
src/Drivers/Gd/Modifiers/CropModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Drivers\Gd\Cloner; use Intervention\Image\Exceptions\ColorException; use Intervention\Image\Interfaces\ColorInterface; use Intervention\Image\Interfaces\FrameInterface; use Intervention\Image\Interfaces\ImageInte...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/FillModifier.php
src/Drivers/Gd/Modifiers/FillModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Exceptions\RuntimeException; use Intervention\Image\Interfaces\FrameInterface; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Modi...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/ColorizeModifier.php
src/Drivers/Gd/Modifiers/ColorizeModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Modifiers\ColorizeModifier as GenericColorizeModifier; class ColorizeModifier extends GenericColorizeModi...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/ColorspaceModifier.php
src/Drivers/Gd/Modifiers/ColorspaceModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Colors\Rgb\Colorspace as RgbColorspace; use Intervention\Image\Exceptions\NotSupportedException; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Inter...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/FlopModifier.php
src/Drivers/Gd/Modifiers/FlopModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Modifiers\FlopModifier as GenericFlopModifier; class FlopModifier extends GenericFlopModifier implements ...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false
Intervention/image
https://github.com/Intervention/image/blob/5f6d27d9fd56312c47f347929e7ac15345c605a1/src/Drivers/Gd/Modifiers/PixelateModifier.php
src/Drivers/Gd/Modifiers/PixelateModifier.php
<?php declare(strict_types=1); namespace Intervention\Image\Drivers\Gd\Modifiers; use Intervention\Image\Interfaces\ImageInterface; use Intervention\Image\Interfaces\SpecializedInterface; use Intervention\Image\Modifiers\PixelateModifier as GenericPixelateModifier; class PixelateModifier extends GenericPixelateModi...
php
MIT
5f6d27d9fd56312c47f347929e7ac15345c605a1
2026-01-04T15:02:42.957046Z
false