芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/vendor/simplesoftwareio/simple-qrcode/src/Image.php
image = imagecreatefromstring($image); } /* * Returns the width of an image * * @return int */ public function getWidth() { return imagesx($this->image); } /* * Returns the height of an image * * @return int */ public function getHeight() { return imagesy($this->image); } /** * Returns the image string. * * @return string */ public function getImageResource() { return $this->image; } /** * Sets the image string. * * @param resource $image */ public function setImageResource($image) { $this->image = $image; } }