getAvailableAdapters()
getAvailableAdapters() : array
Get the available image adapters
Image factory class
loadGd(string $image) : \Pop\Image\Adapter\Gd
Load the image resource from the existing image file into a Gd object
string | $image |
loadGmagick(string $image) : \Pop\Image\Adapter\Gmagick
Load the image resource from the existing image file into a Gmagick object
string | $image |
loadImagick(string $image) : \Pop\Image\Adapter\Imagick
Load the image resource from the existing image file into a Imagick object
string | $image |
loadGdFromString(string $data, string $name = null) : \Pop\Image\Adapter\Gd
Load the image resource from data into a Gd object
string | $data | |
string | $name |
loadGmagickFromString(string $data, string $name = null) : \Pop\Image\Adapter\Gmagick
Load the image resource from data into a Gmagick object
string | $data | |
string | $name |
loadImagickFromString(string $data, string $name = null) : \Pop\Image\Adapter\Imagick
Load the image resource from data into a Imagick object
string | $data | |
string | $name |
createGd(integer $width, integer $height, string $image = null) : \Pop\Image\Adapter\Gd
Create a new image resource and load it into a Gd object
integer | $width | |
integer | $height | |
string | $image |
createGdIndex(integer $width, integer $height, string $image = null) : \Pop\Image\Adapter\Gd
Create a new indexed image resource and load it into a Gd object
integer | $width | |
integer | $height | |
string | $image |
createGmagick(integer $width, integer $height, string $image = null) : \Pop\Image\Adapter\Gmagick
Create a new image resource and load it into a Gmagick object
integer | $width | |
integer | $height | |
string | $image |
createGmagickIndex(integer $width, integer $height, string $image = null) : \Pop\Image\Adapter\Gmagick
Create a new indexed image resource and load it into a Gmagick object
integer | $width | |
integer | $height | |
string | $image |
createImagick(integer $width, integer $height, string $image = null) : \Pop\Image\Adapter\Imagick
Create a new image resource and load it into a Imagick object
integer | $width | |
integer | $height | |
string | $image |
createImagickIndex(integer $width, integer $height, string $image = null) : \Pop\Image\Adapter\Imagick
Create a new indexed image resource and load it into a Imagick object
integer | $width | |
integer | $height | |
string | $image |