Просмотр файла vendor/intervention/image/src/Colors/Profile.php

Размер файла: 535B
<?php

declare(strict_types=1);

namespace Intervention\Image\Colors;

use Intervention\Image\File;
use Intervention\Image\Exceptions\RuntimeException;
use Intervention\Image\Interfaces\ProfileInterface;

class Profile extends File implements ProfileInterface
{
    /**
     * Create profile object from path in file system
     *
     * @param string $path
     * @throws RuntimeException
     * @return Profile
     */
    public static function fromPath(string $path): self
    {
        return new self(fopen($path, 'r'));
    }
}