forked from minimagick/minimagick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmini_magick.rb
More file actions
64 lines (54 loc) · 1.3 KB
/
Copy pathmini_magick.rb
File metadata and controls
64 lines (54 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
require 'mini_magick/version'
require 'mini_magick/configuration'
module MiniMagick
extend MiniMagick::Configuration
##
# You might want to execute only certain blocks of processing with a
# different CLI, because for example that CLI does that particular thing
# faster. After the block CLI resets to its previous value.
#
# @example
# MiniMagick.with_cli :graphicsmagick do
# # operations that are better done with GraphicsMagick
# end
def self.with_cli(cli)
old_cli = self.cli
self.cli = cli
yield
ensure
self.cli = old_cli
end
##
# Checks whether the CLI used is ImageMagick.
#
# @return [Boolean]
def self.imagemagick?
cli == :imagemagick
end
##
# Checks whether the CLI used is ImageMagick 7.
#
# @return [Boolean]
def self.imagemagick7?
cli == :imagemagick7
end
##
# Checks whether the CLI used is GraphicsMagick.
#
# @return [Boolean]
def self.graphicsmagick?
cli == :graphicsmagick
end
##
# Returns ImageMagick's/GraphicsMagick's version.
#
# @return [String]
def self.cli_version
output = MiniMagick::Tool::Identify.new(&:version)
output[/\d+\.\d+\.\d+(-\d+)?/]
end
class Error < RuntimeError; end
class Invalid < StandardError; end
end
require 'mini_magick/tool'
require 'mini_magick/image'