ImageMagick Image Driver.

/sprout/Helpers/Drivers/Image/ImageMagick.php Highlighted file source
Line 25: * ImageMagick Image Driver.
Line 27: class ImageMagick extends ImageDriver
Line 40: * Attempts to detect the ImageMagick installation directory.
Line 52: throw new Kohana_Exception('image.imagemagick.not_found');
Line 62: throw new Kohana_Exception('image.imagemagick.not_found', 'convert'.$this->ext);
Line 229: } // End Image ImageMagick Driver

/sprout/Helpers/FileConvert.php Highlighted file source
Line 24: * - convert (e.g. from the graphicsmagick-imagemagick-compat Debian package)
Line 49: * then be converted using {@see FileConvert::imagemagick}
Line 84: * Convert file using ImageMagick
Line 93: * @throws RuntimeException ImageMagick isn't installed/accessible to PHP
Line 94: * @throws FileConversionException ImageMagick failed to convert the file
Line 96: public static function imagemagick($in_file, $out_ext, $page_index = 0, $density = 400) {
Line 115: throw new RuntimeException("Program 'convert' not installed - try the 'graphicsmagick-imagemagick-compat' package");
Line 117: throw new FileConversionException('Imagemagick converting to ' . $out_ext . ' failed - exec() error');
Line 121: throw new FileConversionException('Imagemagick converting to ' . $out_ext . ' failed - destination file not found');
Line 174: * @param string $program The program name; 'libreoffice', 'convert' (i.e. ImageMagick), 'exiftool'
A total of 20 lines in 4 files were found