Horde_Image_Imagick::loadFile PHP Method

loadFile() public method

Loads the image data from a file.
public loadFile ( string $filename )
$filename string The full path and filename to the file to load the image data from.
    public function loadFile($filename)
    {
        // Parent function loads image data into $this->_data
        parent::loadFile($filename);
        $this->loadString($this->_data);
    }