ncri_attachment_fu 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +35 -0
- data/LICENSE +20 -0
- data/README +193 -0
- data/amazon_s3.yml.tpl +17 -0
- data/lib/attachment_fu.rb +17 -0
- data/lib/geometry.rb +93 -0
- data/lib/technoweenie/attachment_fu.rb +533 -0
- data/lib/technoweenie/attachment_fu/backends.rb +4 -0
- data/lib/technoweenie/attachment_fu/backends/cloud_file_backend.rb +211 -0
- data/lib/technoweenie/attachment_fu/backends/db_file_backend.rb +39 -0
- data/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +126 -0
- data/lib/technoweenie/attachment_fu/backends/s3_backend.rb +394 -0
- data/lib/technoweenie/attachment_fu/processors.rb +1 -0
- data/lib/technoweenie/attachment_fu/processors/core_image_processor.rb +59 -0
- data/lib/technoweenie/attachment_fu/processors/gd2_processor.rb +54 -0
- data/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +61 -0
- data/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +132 -0
- data/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +57 -0
- data/rackspace_cloudfiles.yml.tpl +14 -0
- data/rails/install.rb +7 -0
- data/vendor/red_artisan/core_image/filters/color.rb +27 -0
- data/vendor/red_artisan/core_image/filters/effects.rb +31 -0
- data/vendor/red_artisan/core_image/filters/perspective.rb +25 -0
- data/vendor/red_artisan/core_image/filters/quality.rb +25 -0
- data/vendor/red_artisan/core_image/filters/scale.rb +47 -0
- data/vendor/red_artisan/core_image/filters/watermark.rb +32 -0
- data/vendor/red_artisan/core_image/processor.rb +123 -0
- metadata +75 -0
@@ -0,0 +1 @@
|
|
1
|
+
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'red_artisan/core_image/processor'
|
2
|
+
|
3
|
+
module Technoweenie # :nodoc:
|
4
|
+
module AttachmentFu # :nodoc:
|
5
|
+
module Processors
|
6
|
+
module CoreImageProcessor
|
7
|
+
def self.included(base)
|
8
|
+
base.send :extend, ClassMethods
|
9
|
+
base.alias_method_chain :process_attachment, :processing
|
10
|
+
end
|
11
|
+
|
12
|
+
module ClassMethods
|
13
|
+
def with_image(file, &block)
|
14
|
+
block.call OSX::CIImage.from(file)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
protected
|
19
|
+
def process_attachment_with_processing
|
20
|
+
return unless process_attachment_without_processing
|
21
|
+
with_image do |img|
|
22
|
+
self.width = img.extent.size.width if respond_to?(:width)
|
23
|
+
self.height = img.extent.size.height if respond_to?(:height)
|
24
|
+
resize_image_or_thumbnail! img
|
25
|
+
callback_with_args :after_resize, img
|
26
|
+
end if image?
|
27
|
+
end
|
28
|
+
|
29
|
+
# Performs the actual resizing operation for a thumbnail
|
30
|
+
def resize_image(img, size)
|
31
|
+
processor = ::RedArtisan::CoreImage::Processor.new(img)
|
32
|
+
size = size.first if size.is_a?(Array) && size.length == 1
|
33
|
+
if size.is_a?(Fixnum) || (size.is_a?(Array) && size.first.is_a?(Fixnum))
|
34
|
+
if size.is_a?(Fixnum)
|
35
|
+
processor.fit(size)
|
36
|
+
else
|
37
|
+
processor.resize(size[0], size[1])
|
38
|
+
end
|
39
|
+
else
|
40
|
+
new_size = [img.extent.size.width, img.extent.size.height] / size.to_s
|
41
|
+
processor.resize(new_size[0], new_size[1])
|
42
|
+
end
|
43
|
+
|
44
|
+
processor.render do |result|
|
45
|
+
self.width = result.extent.size.width if respond_to?(:width)
|
46
|
+
self.height = result.extent.size.height if respond_to?(:height)
|
47
|
+
|
48
|
+
# Get a new temp_path for the image before saving
|
49
|
+
temp_paths.unshift Tempfile.new(random_tempfile_filename, Technoweenie::AttachmentFu.tempfile_path).path
|
50
|
+
result.save self.temp_path, OSX::NSJPEGFileType
|
51
|
+
self.size = File.size(self.temp_path)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
|
@@ -0,0 +1,54 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'gd2'
|
3
|
+
module Technoweenie # :nodoc:
|
4
|
+
module AttachmentFu # :nodoc:
|
5
|
+
module Processors
|
6
|
+
module Gd2Processor
|
7
|
+
def self.included(base)
|
8
|
+
base.send :extend, ClassMethods
|
9
|
+
base.alias_method_chain :process_attachment, :processing
|
10
|
+
end
|
11
|
+
|
12
|
+
module ClassMethods
|
13
|
+
# Yields a block containing a GD2 Image for the given binary data.
|
14
|
+
def with_image(file, &block)
|
15
|
+
im = GD2::Image.import(file)
|
16
|
+
block.call(im)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
protected
|
21
|
+
def process_attachment_with_processing
|
22
|
+
return unless process_attachment_without_processing && image?
|
23
|
+
with_image do |img|
|
24
|
+
resize_image_or_thumbnail! img
|
25
|
+
self.width = img.width
|
26
|
+
self.height = img.height
|
27
|
+
callback_with_args :after_resize, img
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
# Performs the actual resizing operation for a thumbnail
|
32
|
+
def resize_image(img, size)
|
33
|
+
size = size.first if size.is_a?(Array) && size.length == 1
|
34
|
+
if size.is_a?(Fixnum) || (size.is_a?(Array) && size.first.is_a?(Fixnum))
|
35
|
+
if size.is_a?(Fixnum)
|
36
|
+
# Borrowed from image science's #thumbnail method and adapted
|
37
|
+
# for this.
|
38
|
+
scale = size.to_f / (img.width > img.height ? img.width.to_f : img.height.to_f)
|
39
|
+
img.resize!((img.width * scale).round(1), (img.height * scale).round(1), false)
|
40
|
+
else
|
41
|
+
img.resize!(size.first, size.last, false)
|
42
|
+
end
|
43
|
+
else
|
44
|
+
w, h = [img.width, img.height] / size.to_s
|
45
|
+
img.resize!(w, h, false)
|
46
|
+
end
|
47
|
+
temp_paths.unshift random_tempfile_filename
|
48
|
+
self.size = img.export(self.temp_path)
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
require 'image_science'
|
2
|
+
module Technoweenie # :nodoc:
|
3
|
+
module AttachmentFu # :nodoc:
|
4
|
+
module Processors
|
5
|
+
module ImageScienceProcessor
|
6
|
+
def self.included(base)
|
7
|
+
base.send :extend, ClassMethods
|
8
|
+
base.alias_method_chain :process_attachment, :processing
|
9
|
+
end
|
10
|
+
|
11
|
+
module ClassMethods
|
12
|
+
# Yields a block containing an Image Science image for the given binary data.
|
13
|
+
def with_image(file, &block)
|
14
|
+
::ImageScience.with_image file, &block
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
protected
|
19
|
+
def process_attachment_with_processing
|
20
|
+
return unless process_attachment_without_processing && image?
|
21
|
+
with_image do |img|
|
22
|
+
self.width = img.width if respond_to?(:width)
|
23
|
+
self.height = img.height if respond_to?(:height)
|
24
|
+
resize_image_or_thumbnail! img
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
# Performs the actual resizing operation for a thumbnail
|
29
|
+
def resize_image(img, size)
|
30
|
+
# create a dummy temp file to write to
|
31
|
+
# ImageScience doesn't handle all gifs properly, so it converts them to
|
32
|
+
# pngs for thumbnails. It has something to do with trying to save gifs
|
33
|
+
# with a larger palette than 256 colors, which is all the gif format
|
34
|
+
# supports.
|
35
|
+
filename.sub! /gif$/, 'png'
|
36
|
+
content_type.sub!(/gif$/, 'png')
|
37
|
+
temp_paths.unshift write_to_temp_file(filename)
|
38
|
+
grab_dimensions = lambda do |img|
|
39
|
+
self.width = img.width if respond_to?(:width)
|
40
|
+
self.height = img.height if respond_to?(:height)
|
41
|
+
img.save self.temp_path
|
42
|
+
self.size = File.size(self.temp_path)
|
43
|
+
callback_with_args :after_resize, img
|
44
|
+
end
|
45
|
+
|
46
|
+
size = size.first if size.is_a?(Array) && size.length == 1
|
47
|
+
if size.is_a?(Fixnum) || (size.is_a?(Array) && size.first.is_a?(Fixnum))
|
48
|
+
if size.is_a?(Fixnum)
|
49
|
+
img.thumbnail(size, &grab_dimensions)
|
50
|
+
else
|
51
|
+
img.resize(size[0], size[1], &grab_dimensions)
|
52
|
+
end
|
53
|
+
else
|
54
|
+
new_size = [img.width, img.height] / size.to_s
|
55
|
+
img.resize(new_size[0], new_size[1], &grab_dimensions)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,132 @@
|
|
1
|
+
require 'mini_magick'
|
2
|
+
module Technoweenie # :nodoc:
|
3
|
+
module AttachmentFu # :nodoc:
|
4
|
+
module Processors
|
5
|
+
module MiniMagickProcessor
|
6
|
+
def self.included(base)
|
7
|
+
base.send :extend, ClassMethods
|
8
|
+
base.alias_method_chain :process_attachment, :processing
|
9
|
+
end
|
10
|
+
|
11
|
+
module ClassMethods
|
12
|
+
# Yields a block containing an MiniMagick Image for the given binary data.
|
13
|
+
def with_image(file, &block)
|
14
|
+
begin
|
15
|
+
binary_data = file.is_a?(MiniMagick::Image) ? file : MiniMagick::Image.from_file(file) unless !Object.const_defined?(:MiniMagick)
|
16
|
+
rescue
|
17
|
+
# Log the failure to load the image.
|
18
|
+
logger.debug("Exception working with image: #{$!}")
|
19
|
+
binary_data = nil
|
20
|
+
end
|
21
|
+
block.call binary_data if block && binary_data
|
22
|
+
ensure
|
23
|
+
!binary_data.nil?
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
protected
|
28
|
+
def process_attachment_with_processing
|
29
|
+
return unless process_attachment_without_processing
|
30
|
+
with_image do |img|
|
31
|
+
resize_image_or_thumbnail! img
|
32
|
+
self.width = img[:width] if respond_to?(:width)
|
33
|
+
self.height = img[:height] if respond_to?(:height)
|
34
|
+
callback_with_args :after_resize, img
|
35
|
+
end if image?
|
36
|
+
end
|
37
|
+
|
38
|
+
# Performs the actual resizing operation for a thumbnail
|
39
|
+
def resize_image(img, size)
|
40
|
+
size = size.first if size.is_a?(Array) && size.length == 1
|
41
|
+
img.combine_options do |commands|
|
42
|
+
commands.strip unless attachment_options[:keep_profile]
|
43
|
+
|
44
|
+
# gif are not handled correct, this is a hack, but it seems to work.
|
45
|
+
if img.output =~ / GIF /
|
46
|
+
img.format("png")
|
47
|
+
end
|
48
|
+
|
49
|
+
if size.is_a?(Fixnum) || (size.is_a?(Array) && size.first.is_a?(Fixnum))
|
50
|
+
if size.is_a?(Fixnum)
|
51
|
+
size = [size, size]
|
52
|
+
commands.resize(size.join('x'))
|
53
|
+
else
|
54
|
+
commands.resize(size.join('x') + '!')
|
55
|
+
end
|
56
|
+
# extend to thumbnail size
|
57
|
+
elsif size.is_a?(String) and size =~ /e$/
|
58
|
+
size = size.gsub(/e/, '')
|
59
|
+
commands.resize(size.to_s + '>')
|
60
|
+
commands.background('#ffffff')
|
61
|
+
commands.gravity('center')
|
62
|
+
commands.extent(size)
|
63
|
+
# crop thumbnail, the smart way
|
64
|
+
elsif size.is_a?(String) and size =~ /c$/
|
65
|
+
size = size.gsub(/c/, '')
|
66
|
+
|
67
|
+
# calculate sizes and aspect ratio
|
68
|
+
thumb_width, thumb_height = size.split("x")
|
69
|
+
thumb_width = thumb_width.to_f
|
70
|
+
thumb_height = thumb_height.to_f
|
71
|
+
|
72
|
+
thumb_aspect = thumb_width.to_f / thumb_height.to_f
|
73
|
+
image_width, image_height = img[:width].to_f, img[:height].to_f
|
74
|
+
image_aspect = image_width / image_height
|
75
|
+
|
76
|
+
# only crop if image is not smaller in both dimensions
|
77
|
+
unless image_width < thumb_width and image_height < thumb_height
|
78
|
+
command = calculate_offset(image_width,image_height,image_aspect,thumb_width,thumb_height,thumb_aspect)
|
79
|
+
|
80
|
+
# crop image
|
81
|
+
commands.extract(command)
|
82
|
+
end
|
83
|
+
|
84
|
+
# don not resize if image is not as height or width then thumbnail
|
85
|
+
if image_width < thumb_width or image_height < thumb_height
|
86
|
+
commands.background('#ffffff')
|
87
|
+
commands.gravity('center')
|
88
|
+
commands.extent(size)
|
89
|
+
# resize image
|
90
|
+
else
|
91
|
+
commands.resize("#{size.to_s}")
|
92
|
+
end
|
93
|
+
# crop end
|
94
|
+
else
|
95
|
+
commands.resize(size.to_s)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
temp_paths.unshift img
|
99
|
+
end
|
100
|
+
|
101
|
+
def calculate_offset(image_width,image_height,image_aspect,thumb_width,thumb_height,thumb_aspect)
|
102
|
+
# only crop if image is not smaller in both dimensions
|
103
|
+
|
104
|
+
# special cases, image smaller in one dimension then thumbsize
|
105
|
+
if image_width < thumb_width
|
106
|
+
offset = (image_height / 2) - (thumb_height / 2)
|
107
|
+
command = "#{image_width}x#{thumb_height}+0+#{offset}"
|
108
|
+
elsif image_height < thumb_height
|
109
|
+
offset = (image_width / 2) - (thumb_width / 2)
|
110
|
+
command = "#{thumb_width}x#{image_height}+#{offset}+0"
|
111
|
+
|
112
|
+
# normal thumbnail generation
|
113
|
+
# calculate height and offset y, width is fixed
|
114
|
+
elsif (image_aspect <= thumb_aspect or image_width < thumb_width) and image_height > thumb_height
|
115
|
+
height = image_width / thumb_aspect
|
116
|
+
offset = (image_height / 2) - (height / 2)
|
117
|
+
command = "#{image_width}x#{height}+0+#{offset}"
|
118
|
+
# calculate width and offset x, height is fixed
|
119
|
+
else
|
120
|
+
width = image_height * thumb_aspect
|
121
|
+
offset = (image_width / 2) - (width / 2)
|
122
|
+
command = "#{width}x#{image_height}+#{offset}+0"
|
123
|
+
end
|
124
|
+
# crop image
|
125
|
+
command
|
126
|
+
end
|
127
|
+
|
128
|
+
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
require 'RMagick' unless defined?(Magick)
|
2
|
+
module Technoweenie # :nodoc:
|
3
|
+
module AttachmentFu # :nodoc:
|
4
|
+
module Processors
|
5
|
+
module RmagickProcessor
|
6
|
+
def self.included(base)
|
7
|
+
base.send :extend, ClassMethods
|
8
|
+
base.alias_method_chain :process_attachment, :processing
|
9
|
+
end
|
10
|
+
|
11
|
+
module ClassMethods
|
12
|
+
# Yields a block containing an RMagick Image for the given binary data.
|
13
|
+
def with_image(file, &block)
|
14
|
+
begin
|
15
|
+
binary_data = file.is_a?(Magick::Image) ? file : Magick::Image.read(file).first unless !Object.const_defined?(:Magick)
|
16
|
+
rescue
|
17
|
+
# Log the failure to load the image. This should match ::Magick::ImageMagickError
|
18
|
+
# but that would cause acts_as_attachment to require rmagick.
|
19
|
+
logger.debug("Exception working with image: #{$!}")
|
20
|
+
binary_data = nil
|
21
|
+
end
|
22
|
+
block.call binary_data if block && binary_data
|
23
|
+
ensure
|
24
|
+
!binary_data.nil?
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
protected
|
29
|
+
def process_attachment_with_processing
|
30
|
+
return unless process_attachment_without_processing
|
31
|
+
with_image do |img|
|
32
|
+
resize_image_or_thumbnail! img
|
33
|
+
self.width = img.columns if respond_to?(:width)
|
34
|
+
self.height = img.rows if respond_to?(:height)
|
35
|
+
callback_with_args :after_resize, img
|
36
|
+
end if image?
|
37
|
+
end
|
38
|
+
|
39
|
+
# Performs the actual resizing operation for a thumbnail
|
40
|
+
def resize_image(img, size)
|
41
|
+
size = size.first if size.is_a?(Array) && size.length == 1 && !size.first.is_a?(Fixnum)
|
42
|
+
if size.is_a?(Fixnum) || (size.is_a?(Array) && size.first.is_a?(Fixnum))
|
43
|
+
size = [size, size] if size.is_a?(Fixnum)
|
44
|
+
img.thumbnail!(*size)
|
45
|
+
elsif size.is_a?(String) && size =~ /^c.*$/ # Image cropping - example geometry string: c75x75
|
46
|
+
dimensions = size[1..size.size].split("x")
|
47
|
+
img.crop_resized!(dimensions[0].to_i, dimensions[1].to_i)
|
48
|
+
else
|
49
|
+
img.change_geometry(size.to_s) { |cols, rows, image| image.resize!(cols<1 ? 1 : cols, rows<1 ? 1 : rows) }
|
50
|
+
end
|
51
|
+
img.strip! unless attachment_options[:keep_profile]
|
52
|
+
temp_paths.unshift write_to_temp_file(img.to_blob)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
data/rails/install.rb
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
require 'fileutils'
|
2
|
+
|
3
|
+
s3_config = File.dirname(__FILE__) + '/../../../config/amazon_s3.yml'
|
4
|
+
FileUtils.cp File.dirname(__FILE__) + '/amazon_s3.yml.tpl', s3_config unless File.exist?(s3_config)
|
5
|
+
cloudfiles_config = File.dirname(__FILE__) + '/../../../config/rackspace_cloudfiles.yml'
|
6
|
+
FileUtils.cp File.dirname(__FILE__) + '/rackspace_cloudfiles.yml.tpl', cloudfiles_config unless File.exist?(cloudfiles_config)
|
7
|
+
puts IO.read(File.join(File.dirname(__FILE__), 'README'))
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module RedArtisan
|
2
|
+
module CoreImage
|
3
|
+
module Filters
|
4
|
+
module Color
|
5
|
+
|
6
|
+
def greyscale(color = nil, intensity = 1.00)
|
7
|
+
create_core_image_context(@original.extent.size.width, @original.extent.size.height)
|
8
|
+
|
9
|
+
color = OSX::CIColor.colorWithString("1.0 1.0 1.0 1.0") unless color
|
10
|
+
|
11
|
+
@original.color_monochrome :inputColor => color, :inputIntensity => intensity do |greyscale|
|
12
|
+
@target = greyscale
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def sepia(intensity = 1.00)
|
17
|
+
create_core_image_context(@original.extent.size.width, @original.extent.size.height)
|
18
|
+
|
19
|
+
@original.sepia_tone :inputIntensity => intensity do |sepia|
|
20
|
+
@target = sepia
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module RedArtisan
|
2
|
+
module CoreImage
|
3
|
+
module Filters
|
4
|
+
module Effects
|
5
|
+
|
6
|
+
def spotlight(position, points_at, brightness, concentration, color)
|
7
|
+
create_core_image_context(@original.extent.size.width, @original.extent.size.height)
|
8
|
+
|
9
|
+
@original.spot_light :inputLightPosition => vector3(*position), :inputLightPointsAt => vector3(*points_at),
|
10
|
+
:inputBrightness => brightness, :inputConcentration => concentration, :inputColor => color do |spot|
|
11
|
+
@target = spot
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
def edges(intensity = 1.00)
|
16
|
+
create_core_image_context(@original.extent.size.width, @original.extent.size.height)
|
17
|
+
|
18
|
+
@original.edges :inputIntensity => intensity do |edged|
|
19
|
+
@target = edged
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def vector3(x, y, w)
|
26
|
+
OSX::CIVector.vectorWithX_Y_Z(x, y, w)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|