paperclip-smusher 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/paperclip-smusher.rb +41 -39
- metadata +3 -3
data/lib/paperclip-smusher.rb
CHANGED
@@ -1,51 +1,53 @@
|
|
1
1
|
module Paperclip
|
2
2
|
class Thumbnail < Processor
|
3
|
-
def make
|
4
|
-
src = @file
|
5
|
-
conv = Tempfile.new([@basename, @format ? ".#{@format}" : ''])
|
6
|
-
conv.binmode
|
7
|
-
dst = Tempfile.new([@basename, @format ? ".#{@format}" : ''])
|
8
|
-
dst.binmode
|
9
3
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
4
|
+
# Performs the conversion of the +file+ into a thumbnail. Returns the Tempfile
|
5
|
+
# that contains the new image.
|
6
|
+
def make
|
7
|
+
src = @file
|
8
|
+
conv = Tempfile.new([@basename, @format ? ".#{@format}" : ''])
|
9
|
+
conv.binmode
|
10
|
+
dst = Tempfile.new([@basename, @format ? ".#{@format}" : ''])
|
11
|
+
dst.binmode
|
17
12
|
|
18
|
-
|
13
|
+
begin
|
14
|
+
parameters = []
|
15
|
+
parameters << source_file_options
|
16
|
+
parameters << ":source"
|
17
|
+
parameters << transformation_command
|
18
|
+
parameters << convert_options
|
19
|
+
parameters << ":dest"
|
19
20
|
|
20
|
-
|
21
|
+
parameters = parameters.flatten.compact.join(" ").strip.squeeze(" ")
|
21
22
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
23
|
+
success = Paperclip.run("convert", parameters, :source => "#{File.expand_path(src.path)}#{'[0]' unless animated?}", :dest => File.expand_path(conv.path))
|
24
|
+
if conv.size > 0
|
25
|
+
format = begin
|
26
|
+
Paperclip.run("identify", "-format %m :file", :file => "#{File.expand_path(conv.path)}[0]")
|
27
|
+
rescue PaperclipCommandLineError
|
28
|
+
""
|
29
|
+
end
|
28
30
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
31
|
+
case format.strip
|
32
|
+
when 'JPEG'
|
33
|
+
# Part of libjpeg-progs deb package
|
34
|
+
success = Paperclip.run('jpegtran', "-copy none -optimize -perfect :source > :dest", :source => File.expand_path(conv.path), :dest => File.expand_path(dst.path))
|
35
|
+
when 'PNG'
|
36
|
+
success = Paperclip.run('pngcrush', "-rem alla -reduce -brute :source :dest", :source => File.expand_path(conv.path), :dest => File.expand_path(dst.path))
|
37
|
+
else
|
38
|
+
dst = conv
|
39
|
+
end
|
40
|
+
end
|
41
|
+
rescue Cocaine::ExitStatusError => e
|
42
|
+
raise PaperclipError, "There was an error processing the thumbnail for #{@basename}" if @whiny
|
43
|
+
rescue Cocaine::CommandNotFoundError => e
|
44
|
+
raise Paperclip::CommandNotFoundError.new("Could not run the `convert` command. Please install ImageMagick.")
|
45
|
+
rescue Exception => e
|
46
|
+
Rails.logger.error "There was an error processing the thumbnail for #{@basename}. Check imagemagick, jpegtran and pngcrush installed."
|
47
|
+
HoptoadNotifier.notify(:error_class => "Paperclip - images optimization", :error_message => "Paperclip ERROR: #{e.message}")
|
37
48
|
end
|
38
|
-
end
|
39
|
-
rescue Exception => e
|
40
|
-
Rails.logger.error "There was an error processing the thumbnail for #{@basename}. Check imagemagick, jpegtran and pngcrush installed."
|
41
|
-
|
42
|
-
HoptoadNotifier.notify(
|
43
|
-
:error_class => "Paperclip - images optimization",
|
44
|
-
:error_message => "Paperclip ERROR: #{e.message}"
|
45
|
-
)
|
46
|
-
end
|
47
49
|
|
48
|
-
|
50
|
+
dst.size > 0 ? dst : conv
|
49
51
|
end
|
50
52
|
end
|
51
53
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: paperclip-smusher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Andrea Salicetti
|