Home
last modified time | relevance | path

Searched refs:imagepath (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/vendor/splitbrain/slika/src/
H A DAdapter.php12 protected $imagepath; variable in splitbrain\\slika\\Adapter
20 * @param string $imagepath path to the original image
24 public function __construct($imagepath, $options = []) argument
26 if (!file_exists($imagepath)) {
30 if (!is_readable($imagepath)) {
34 $this->imagepath = $imagepath;
H A DImageInfo.php18 protected $imagepath; variable in splitbrain\\slika\\ImageInfo
33 * @param string $imagepath
36 public function __construct($imagepath) argument
38 if (!file_exists($imagepath)) {
41 if (!is_readable($imagepath)) {
45 $info = @getimagesize($imagepath);
50 $this->imagepath = $imagepath;
59 $this->orientation = self::readExifOrientation($imagepath);
H A DImageMagickAdapter.php15 public function __construct($imagepath, $options = []) argument
17 parent::__construct($imagepath, $options);
24 $this->args[] = $imagepath;
H A DGdAdapter.php22 public function __construct($imagepath, $options = []) argument
24 parent::__construct($imagepath, $options);
25 $this->image = $this->loadImage($imagepath);
47 return $this->rotate(ImageInfo::readExifOrientation($this->imagepath));