module SimpleMagick

Constants

VERSION

Public Class Methods

imagemagick_installed?() click to toggle source

mogrify is ImageMagick family tool. @note Windows Not Supported @return [Boolean] find mogrify command is true

# File lib/simple_magick.rb, line 14
def self.imagemagick_installed?
  !`which #{ImageMagick::EXEC}`.split("\n").first.nil? unless Utility.windows?
end