🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home2
/
birthday
/
event.krishivgroups.in
/
vendor
/
intervention
/
gif
/
src
/
Decoders
✏️
Editing: ColorDecoder.php
<?php declare(strict_types=1); namespace Intervention\Gif\Decoders; use Intervention\Gif\Blocks\Color; use Intervention\Gif\Exceptions\DecoderException; class ColorDecoder extends AbstractDecoder { /** * Decode current source to Color * * @throws DecoderException * @return Color */ public function decode(): Color { $color = new Color(); $color->setRed($this->decodeColorValue($this->getNextByteOrFail())); $color->setGreen($this->decodeColorValue($this->getNextByteOrFail())); $color->setBlue($this->decodeColorValue($this->getNextByteOrFail())); return $color; } /** * Decode red value from source * * @return int */ protected function decodeColorValue(string $byte): int { return unpack('C', $byte)[1]; } }
💾 Save Changes
❌ Cancel