Home
last modified time | relevance | path

Searched refs:imagepath (Results 1 – 3 of 3) 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 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);
52 $exif = exif_read_data($this->imagepath);
59 $data = file_get_contents($this->imagepath, false, null, 0, 70000);