Module: AttachmentSaver::Processors::RMagick
- Includes:
- Image
- Defined in:
- lib/processors/r_magick.rb
Defined Under Namespace
Modules: Operations
Constant Summary
Constants included
from Image
Image::DEFAULT_VALID_IMAGE_TYPES
Instance Method Summary
collapse
Methods included from Image
#before_validate_attachment, #build_derived, #derived_image?, from_geometry_string, #image?, #process_attachment, #process_attachment?, #update_derived, #valid_image_type, #want_format?
Instance Method Details
#examine_image ⇒ Object
26
27
28
29
30
31
32
33
34
35
36
37
|
# File 'lib/processors/r_magick.rb', line 26
def examine_image
with_image_attributes(uploaded_file_path) do |original_image|
self.width = original_image.width if respond_to?(:width)
self.height = original_image.height if respond_to?(:height)
self.content_type = original_image.corrected_mime_type unless self.class.attachment_options[:keep_content_type] || original_image.corrected_mime_type.nil?
self.file_extension = original_image.file_type_extension unless self.class.attachment_options[:keep_file_extension] || original_image.file_type_extension.nil?
end
rescue AttachmentSaverError
raise
rescue Exception => ex
raise RMagickProcessorError, "#{ex.class}: #{ex.message}", ex.backtrace
end
|
#process_image(original_image, derived_format_name, resize_format) ⇒ Object
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# File 'lib/processors/r_magick.rb', line 39
def process_image(original_image, derived_format_name, resize_format)
resize_format = Image.from_geometry_string(resize_format) if resize_format.is_a?(String)
result = original_image.send(*resize_format) do |derived_image|
return nil unless want_format?(derived_format_name, derived_image.width, derived_image.height)
derived_content_type = derived_image.corrected_mime_type || original_image.corrected_mime_type || content_type
derived_extension = derived_image.file_type_extension
temp = ExtendedTempfile.new("asrtemp", tempfile_directory, derived_extension)
temp.binmode
temp.close
derived_image.write(temp.path)
temp.open
{ :format_name => derived_format_name.to_s,
:width => derived_image.width,
:height => derived_image.height,
:content_type => derived_content_type,
:file_extension => derived_extension,
:uploaded_data => temp }
end
GC.start
result
end
|
#with_image(filename, &block) ⇒ Object
16
17
18
19
|
# File 'lib/processors/r_magick.rb', line 16
def with_image(filename, &block)
image = Magick::Image.read(filename).first
block.call(image.extend(Operations))
end
|
#with_image_attributes(filename, &block) ⇒ Object
21
22
23
24
|
# File 'lib/processors/r_magick.rb', line 21
def with_image_attributes(filename, &block)
image = Magick::Image.ping(filename).first
block.call(image.extend(Operations))
end
|