phildarnowsky-paperclip 2.2.10

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.
Files changed (50) hide show
  1. data/LICENSE +26 -0
  2. data/README.rdoc +174 -0
  3. data/Rakefile +99 -0
  4. data/generators/paperclip/USAGE +5 -0
  5. data/generators/paperclip/paperclip_generator.rb +27 -0
  6. data/generators/paperclip/templates/paperclip_migration.rb.erb +19 -0
  7. data/init.rb +1 -0
  8. data/lib/paperclip/attachment.rb +461 -0
  9. data/lib/paperclip/callback_compatability.rb +33 -0
  10. data/lib/paperclip/content_type.rb +21 -0
  11. data/lib/paperclip/geometry.rb +115 -0
  12. data/lib/paperclip/interpolations.rb +105 -0
  13. data/lib/paperclip/iostream.rb +58 -0
  14. data/lib/paperclip/matchers/have_attached_file_matcher.rb +49 -0
  15. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +66 -0
  16. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +48 -0
  17. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +83 -0
  18. data/lib/paperclip/matchers.rb +4 -0
  19. data/lib/paperclip/processor.rb +49 -0
  20. data/lib/paperclip/storage.rb +236 -0
  21. data/lib/paperclip/thumbnail.rb +70 -0
  22. data/lib/paperclip/upfile.rb +40 -0
  23. data/lib/paperclip.rb +360 -0
  24. data/paperclip.gemspec +37 -0
  25. data/shoulda_macros/paperclip.rb +68 -0
  26. data/tasks/paperclip_tasks.rake +79 -0
  27. data/test/attachment_test.rb +859 -0
  28. data/test/content_type_test.rb +46 -0
  29. data/test/database.yml +4 -0
  30. data/test/fixtures/12k.png +0 -0
  31. data/test/fixtures/50x50.png +0 -0
  32. data/test/fixtures/5k.png +0 -0
  33. data/test/fixtures/bad.png +1 -0
  34. data/test/fixtures/s3.yml +4 -0
  35. data/test/fixtures/text.txt +0 -0
  36. data/test/fixtures/twopage.pdf +0 -0
  37. data/test/geometry_test.rb +177 -0
  38. data/test/helper.rb +100 -0
  39. data/test/integration_test.rb +484 -0
  40. data/test/interpolations_test.rb +120 -0
  41. data/test/iostream_test.rb +71 -0
  42. data/test/matchers/have_attached_file_matcher_test.rb +21 -0
  43. data/test/matchers/validate_attachment_content_type_matcher_test.rb +30 -0
  44. data/test/matchers/validate_attachment_presence_matcher_test.rb +21 -0
  45. data/test/matchers/validate_attachment_size_matcher_test.rb +50 -0
  46. data/test/paperclip_test.rb +291 -0
  47. data/test/processor_test.rb +10 -0
  48. data/test/storage_test.rb +371 -0
  49. data/test/thumbnail_test.rb +177 -0
  50. metadata +127 -0
@@ -0,0 +1,461 @@
1
+ module Paperclip
2
+ # The Attachment class manages the files for a given attachment. It saves
3
+ # when the model saves, deletes when the model is destroyed, and processes
4
+ # the file upon assignment.
5
+ class Attachment
6
+
7
+ def self.default_options
8
+ @default_options ||= {
9
+ :url => "/system/:attachment/:id/:style/:filename",
10
+ :path => ":rails_root/public:url",
11
+ :styles => {},
12
+ :default_url => "/:attachment/:style/missing.png",
13
+ :default_style => :original,
14
+ :validations => [],
15
+ :storage => :filesystem,
16
+ :whiny => Paperclip.options[:whiny] || Paperclip.options[:whiny_thumbnails],
17
+ :content_type_strategy => :believe_client
18
+ }
19
+ end
20
+
21
+ attr_reader :name, :instance, :styles, :default_style, :convert_options, :queued_for_write, :options, :content_type_strategy
22
+
23
+ # Creates an Attachment object. +name+ is the name of the attachment,
24
+ # +instance+ is the ActiveRecord object instance it's attached to, and
25
+ # +options+ is the same as the hash passed to +has_attached_file+.
26
+ def initialize name, instance, options = {}
27
+ @name = name
28
+ @instance = instance
29
+
30
+ options = self.class.default_options.merge(options)
31
+
32
+ @url = options[:url]
33
+ @url = @url.call(self) if @url.is_a?(Proc)
34
+ @path = options[:path]
35
+ @path = @path.call(self) if @path.is_a?(Proc)
36
+ @styles = options[:styles]
37
+ @styles = @styles.call(self) if @styles.is_a?(Proc)
38
+ @default_url = options[:default_url]
39
+ @validations = options[:validations]
40
+ @default_style = options[:default_style]
41
+ @content_type_strategy = options[:content_type_strategy]
42
+ @storage = options[:storage]
43
+ @whiny = options[:whiny_thumbnails] || options[:whiny]
44
+ @convert_options = options[:convert_options] || {}
45
+ @processors = options[:processors] || [:thumbnail]
46
+ @options = options
47
+ @queued_for_delete = []
48
+ @queued_for_write = {}
49
+ @errors = {}
50
+ @validation_errors = nil
51
+ @dirty = false
52
+
53
+ normalize_style_definition
54
+ initialize_storage
55
+ end
56
+
57
+ # What gets called when you call instance.attachment = File. It clears
58
+ # errors, assigns attributes, processes the file, and runs validations. It
59
+ # also queues up the previous file for deletion, to be flushed away on
60
+ # #save of its host. In addition to form uploads, you can also assign
61
+ # another Paperclip attachment:
62
+ # new_user.avatar = old_user.avatar
63
+ # If the file that is assigned is not valid, the processing (i.e.
64
+ # thumbnailing, etc) will NOT be run.
65
+ def assign uploaded_file
66
+ ensure_required_accessors!
67
+
68
+ if uploaded_file.is_a?(Paperclip::Attachment)
69
+ uploaded_file = uploaded_file.to_file(:original)
70
+ close_uploaded_file = uploaded_file.respond_to?(:close)
71
+ end
72
+
73
+ return nil unless valid_assignment?(uploaded_file)
74
+
75
+ uploaded_file.binmode if uploaded_file.respond_to? :binmode
76
+ self.clear
77
+
78
+ return nil if uploaded_file.nil?
79
+
80
+ @queued_for_write[:original] = uploaded_file.to_tempfile
81
+ instance_write(:file_name, uploaded_file.original_filename.strip.gsub(/[^\w\d\.\-]+/, '_'))
82
+ instance_write(:content_type, determine_content_type(uploaded_file))
83
+ instance_write(:file_size, uploaded_file.size.to_i)
84
+ instance_write(:updated_at, Time.now)
85
+
86
+ @dirty = true
87
+
88
+ post_process if valid?
89
+
90
+ # Reset the file size if the original file was reprocessed.
91
+ instance_write(:file_size, @queued_for_write[:original].size.to_i)
92
+ ensure
93
+ uploaded_file.close if close_uploaded_file
94
+ validate
95
+ end
96
+
97
+ # Returns the public URL of the attachment, with a given style. Note that
98
+ # this does not necessarily need to point to a file that your web server
99
+ # can access and can point to an action in your app, if you need fine
100
+ # grained security. This is not recommended if you don't need the
101
+ # security, however, for performance reasons. set
102
+ # include_updated_timestamp to false if you want to stop the attachment
103
+ # update time appended to the url
104
+ def url style = default_style, include_updated_timestamp = true
105
+ url = original_filename.nil? ? interpolate(@default_url, style) : interpolate(@url, style)
106
+ include_updated_timestamp && updated_at ? [url, updated_at].compact.join(url.include?("?") ? "&" : "?") : url
107
+ end
108
+
109
+ # Returns the path of the attachment as defined by the :path option. If the
110
+ # file is stored in the filesystem the path refers to the path of the file
111
+ # on disk. If the file is stored in S3, the path is the "key" part of the
112
+ # URL, and the :bucket option refers to the S3 bucket.
113
+ def path style = default_style
114
+ original_filename.nil? ? nil : interpolate(@path, style)
115
+ end
116
+
117
+ # Alias to +url+
118
+ def to_s style = nil
119
+ url(style)
120
+ end
121
+
122
+ # Returns true if there are no errors on this attachment.
123
+ def valid?
124
+ validate
125
+ errors.empty?
126
+ end
127
+
128
+ # Returns an array containing the errors on this attachment.
129
+ def errors
130
+ @errors
131
+ end
132
+
133
+ # Returns true if there are changes that need to be saved.
134
+ def dirty?
135
+ @dirty
136
+ end
137
+
138
+ # Saves the file, if there are no errors. If there are, it flushes them to
139
+ # the instance's errors and returns false, cancelling the save.
140
+ def save
141
+ if valid?
142
+ flush_deletes
143
+ flush_writes
144
+ @dirty = false
145
+ true
146
+ else
147
+ flush_errors
148
+ false
149
+ end
150
+ end
151
+
152
+ # Clears out the attachment. Has the same effect as previously assigning
153
+ # nil to the attachment. Does NOT save. If you wish to clear AND save,
154
+ # use #destroy.
155
+ def clear
156
+ queue_existing_for_delete
157
+ @errors = {}
158
+ @validation_errors = nil
159
+ end
160
+
161
+ # Destroys the attachment. Has the same effect as previously assigning
162
+ # nil to the attachment *and saving*. This is permanent. If you wish to
163
+ # wipe out the existing attachment but not save, use #clear.
164
+ def destroy
165
+ clear
166
+ save
167
+ end
168
+
169
+ # Returns the name of the file as originally assigned, and lives in the
170
+ # <attachment>_file_name attribute of the model.
171
+ def original_filename
172
+ instance_read(:file_name)
173
+ end
174
+
175
+ # Returns the size of the file as originally assigned, and lives in the
176
+ # <attachment>_file_size attribute of the model.
177
+ def size
178
+ instance_read(:file_size) || (@queued_for_write[:original] && @queued_for_write[:original].size)
179
+ end
180
+
181
+ # Returns the content_type of the file as originally assigned, and lives
182
+ # in the <attachment>_content_type attribute of the model.
183
+ def content_type style = default_style
184
+ (style == :original) ? instance_read(:content_type) : Paperclip.content_type_for(interpolate(':extension', style))
185
+ end
186
+
187
+ # Returns the last modified time of the file as originally assigned, and
188
+ # lives in the <attachment>_updated_at attribute of the model.
189
+ def updated_at
190
+ time = instance_read(:updated_at)
191
+ time && time.to_i
192
+ end
193
+
194
+ # Paths and URLs can have a number of variables interpolated into them
195
+ # to vary the storage location based on name, id, style, class, etc.
196
+ # This method is a deprecated access into supplying and retrieving these
197
+ # interpolations. Future access should use either Paperclip.interpolates
198
+ # or extend the Paperclip::Interpolations module directly.
199
+ def self.interpolations
200
+ warn('[DEPRECATION] Paperclip::Attachment.interpolations is deprecated ' +
201
+ 'and will be removed from future versions. ' +
202
+ 'Use Paperclip.interpolates instead')
203
+ Paperclip::Interpolations
204
+ end
205
+
206
+ # This method really shouldn't be called that often. It's expected use is
207
+ # in the paperclip:refresh rake task and that's it. It will regenerate all
208
+ # thumbnails forcefully, by reobtaining the original file and going through
209
+ # the post-process again.
210
+ def reprocess!
211
+ new_original = Tempfile.new("paperclip-reprocess")
212
+ new_original.binmode
213
+ if old_original = to_file(:original)
214
+ new_original.write( old_original.read )
215
+ new_original.rewind
216
+
217
+ @queued_for_write = { :original => new_original }
218
+ post_process
219
+
220
+ old_original.close if old_original.respond_to?(:close)
221
+
222
+ save
223
+ else
224
+ true
225
+ end
226
+ end
227
+
228
+ # Returns true if a file has been assigned.
229
+ def file?
230
+ !original_filename.blank?
231
+ end
232
+
233
+ # Writes the attachment-specific attribute on the instance. For example,
234
+ # instance_write(:file_name, "me.jpg") will write "me.jpg" to the instance's
235
+ # "avatar_file_name" field (assuming the attachment is called avatar).
236
+ def instance_write(attr, value)
237
+ setter = :"#{name}_#{attr}="
238
+ responds = instance.respond_to?(setter)
239
+ self.instance_variable_set("@_#{setter.to_s.chop}", value)
240
+ instance.send(setter, value) if responds || attr.to_s == "file_name"
241
+ end
242
+
243
+ # Reads the attachment-specific attribute on the instance. See instance_write
244
+ # for more details.
245
+ def instance_read(attr)
246
+ getter = :"#{name}_#{attr}"
247
+ responds = instance.respond_to?(getter)
248
+ cached = self.instance_variable_get("@_#{getter}")
249
+ return cached if cached
250
+ instance.send(getter) if responds || attr.to_s == "file_name"
251
+ end
252
+
253
+ private
254
+
255
+ # "application/octet" isn't a real MIME type, but I've seen it around
256
+ # anyway.
257
+
258
+ GENERIC_CONTENT_TYPES = %w(
259
+ application/octet
260
+ application/octet-stream
261
+ )
262
+
263
+ def ensure_required_accessors! #:nodoc:
264
+ %w(file_name).each do |field|
265
+ unless @instance.respond_to?("#{name}_#{field}") && @instance.respond_to?("#{name}_#{field}=")
266
+ raise PaperclipError.new("#{@instance.class} model missing required attr_accessor for '#{name}_#{field}'")
267
+ end
268
+ end
269
+ end
270
+
271
+ def log message #:nodoc:
272
+ Paperclip.log(message)
273
+ end
274
+
275
+ def valid_assignment? file #:nodoc:
276
+ file.nil? || (file.respond_to?(:original_filename) && file.respond_to?(:content_type))
277
+ end
278
+
279
+ def validate #:nodoc:
280
+ unless @validation_errors
281
+ @validation_errors = @validations.inject({}) do |errors, validation|
282
+ name, options = validation
283
+ errors[name] = send(:"validate_#{name}", options) if allow_validation?(options)
284
+ errors
285
+ end
286
+ @validation_errors.reject!{|k,v| v == nil }
287
+ @errors.merge!(@validation_errors)
288
+ end
289
+ @validation_errors
290
+ end
291
+
292
+ def allow_validation? options #:nodoc:
293
+ (options[:if].nil? || check_guard(options[:if])) && (options[:unless].nil? || !check_guard(options[:unless]))
294
+ end
295
+
296
+ def check_guard guard #:nodoc:
297
+ if guard.respond_to? :call
298
+ guard.call(instance)
299
+ elsif ! guard.blank?
300
+ instance.send(guard.to_s)
301
+ end
302
+ end
303
+
304
+ def validate_size options #:nodoc:
305
+ if file? && !options[:range].include?(size.to_i)
306
+ options[:message].gsub(/:min/, options[:min].to_s).gsub(/:max/, options[:max].to_s)
307
+ end
308
+ end
309
+
310
+ def validate_presence options #:nodoc:
311
+ options[:message] unless file?
312
+ end
313
+
314
+ def validate_content_type options #:nodoc:
315
+ valid_types = [options[:content_type]].flatten
316
+ unless original_filename.blank?
317
+ unless valid_types.blank?
318
+ content_type = instance_read(:content_type)
319
+ unless valid_types.any?{|t| content_type.nil? || t === content_type }
320
+ options[:message] || "is not one of the allowed file types."
321
+ end
322
+ end
323
+ end
324
+ end
325
+
326
+ def normalize_style_definition #:nodoc:
327
+ @styles.each do |name, args|
328
+ unless args.is_a? Hash
329
+ dimensions, format = [args, nil].flatten[0..1]
330
+ format = nil if format.blank?
331
+ @styles[name] = {
332
+ :processors => @processors,
333
+ :geometry => dimensions,
334
+ :format => format,
335
+ :whiny => @whiny,
336
+ :convert_options => extra_options_for(name)
337
+ }
338
+ else
339
+ @styles[name] = {
340
+ :processors => @processors,
341
+ :whiny => @whiny,
342
+ :convert_options => extra_options_for(name)
343
+ }.merge(@styles[name])
344
+ end
345
+ end
346
+ end
347
+
348
+ def solidify_style_definitions #:nodoc:
349
+ @styles.each do |name, args|
350
+ @styles[name][:geometry] = @styles[name][:geometry].call(instance) if @styles[name][:geometry].respond_to?(:call)
351
+ @styles[name][:processors] = @styles[name][:processors].call(instance) if @styles[name][:processors].respond_to?(:call)
352
+ end
353
+ end
354
+
355
+ def initialize_storage #:nodoc:
356
+ @storage_module = Paperclip::Storage.const_get(@storage.to_s.capitalize)
357
+ self.extend(@storage_module)
358
+ end
359
+
360
+ def extra_options_for(style) #:nodoc:
361
+ all_options = convert_options[:all]
362
+ all_options = all_options.call(instance) if all_options.respond_to?(:call)
363
+ style_options = convert_options[style]
364
+ style_options = style_options.call(instance) if style_options.respond_to?(:call)
365
+
366
+ [ style_options, all_options ].compact.join(" ")
367
+ end
368
+
369
+ def post_process #:nodoc:
370
+ return if @queued_for_write[:original].nil?
371
+ solidify_style_definitions
372
+ return if fire_events(:before)
373
+ post_process_styles
374
+ return if fire_events(:after)
375
+ end
376
+
377
+ def fire_events(which) #:nodoc:
378
+ return true if callback(:"#{which}_post_process") == false
379
+ return true if callback(:"#{which}_#{name}_post_process") == false
380
+ end
381
+
382
+ def callback which #:nodoc:
383
+ instance.run_callbacks(which, @queued_for_write){|result, obj| result == false }
384
+ end
385
+
386
+ def post_process_styles #:nodoc:
387
+ @styles.each do |name, args|
388
+ begin
389
+ raise RuntimeError.new("Style #{name} has no processors defined.") if args[:processors].blank?
390
+ @queued_for_write[name] = args[:processors].inject(@queued_for_write[:original]) do |file, processor|
391
+ Paperclip.processor(processor).make(file, args, self)
392
+ end
393
+ rescue PaperclipError => e
394
+ log("An error was received while processing: #{e.inspect}")
395
+ (@errors[:processing] ||= []) << e.message if @whiny
396
+ end
397
+ end
398
+ end
399
+
400
+ def interpolate pattern, style = default_style #:nodoc:
401
+ Paperclip::Interpolations.interpolate(pattern, self, style)
402
+ end
403
+
404
+ def queue_existing_for_delete #:nodoc:
405
+ return unless file?
406
+ @queued_for_delete += [:original, *@styles.keys].uniq.map do |style|
407
+ path(style) if exists?(style)
408
+ end.compact
409
+ instance_write(:file_name, nil)
410
+ instance_write(:content_type, nil)
411
+ instance_write(:file_size, nil)
412
+ instance_write(:updated_at, nil)
413
+ end
414
+
415
+ def flush_errors #:nodoc:
416
+ @errors.each do |error, message|
417
+ [message].flatten.each {|m| instance.errors.add(name, m) }
418
+ end
419
+ end
420
+
421
+ def determine_content_type(uploaded_file)
422
+ nominal_content_type = normalize_content_type(uploaded_file.content_type)
423
+
424
+ case content_type_strategy
425
+ when :believe_client
426
+ nominal_content_type
427
+ when :from_extension
428
+ determine_content_type_from_extension(uploaded_file)
429
+ when :from_extension_when_generic
430
+ determine_content_type_from_extension_when_generic(uploaded_file)
431
+ else
432
+ raise NotImplementedError, "Don't know how to dispatch content type strategy #{content_type_strategy}"
433
+ end
434
+ end
435
+
436
+ def determine_content_type_from_extension(uploaded_file)
437
+ extension = File.extname(uploaded_file.original_filename.strip)
438
+ extension = extension[1..-1] # lose leading dot
439
+ extension ||= ''
440
+
441
+ Paperclip.content_type_for extension
442
+ end
443
+
444
+ def determine_content_type_from_extension_when_generic(uploaded_file)
445
+ if generic_content_type?(uploaded_file.content_type)
446
+ determine_content_type_from_extension(uploaded_file)
447
+ else
448
+ normalize_content_type(uploaded_file.content_type)
449
+ end
450
+ end
451
+
452
+ def normalize_content_type(content_type)
453
+ content_type.to_s.strip
454
+ end
455
+
456
+ def generic_content_type?(content_type)
457
+ GENERIC_CONTENT_TYPES.include?(content_type)
458
+ end
459
+ end
460
+ end
461
+
@@ -0,0 +1,33 @@
1
+ module Paperclip
2
+ # This module is intended as a compatability shim for the differences in
3
+ # callbacks between Rails 2.0 and Rails 2.1.
4
+ module CallbackCompatability
5
+ def self.included(base)
6
+ base.extend(ClassMethods)
7
+ base.send(:include, InstanceMethods)
8
+ end
9
+
10
+ module ClassMethods
11
+ # The implementation of this method is taken from the Rails 1.2.6 source,
12
+ # from rails/activerecord/lib/active_record/callbacks.rb, line 192.
13
+ def define_callbacks(*args)
14
+ args.each do |method|
15
+ self.class_eval <<-"end_eval"
16
+ def self.#{method}(*callbacks, &block)
17
+ callbacks << block if block_given?
18
+ write_inheritable_array(#{method.to_sym.inspect}, callbacks)
19
+ end
20
+ end_eval
21
+ end
22
+ end
23
+ end
24
+
25
+ module InstanceMethods
26
+ # The callbacks in < 2.1 don't worry about the extra options or the
27
+ # block, so just run what we have available.
28
+ def run_callbacks(meth, opts = nil, &blk)
29
+ callback(meth)
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,21 @@
1
+ module Paperclip
2
+ class << self
3
+ if defined? Rack::Mime
4
+ def content_type_for(type) #:nodoc:
5
+ Rack::Mime.mime_type(".#{type}")
6
+ end
7
+ else
8
+ def content_type_for(type) #:nodoc:
9
+ case type
10
+ when %r"jpe?g" then "image/jpeg"
11
+ when %r"tiff?" then "image/tiff"
12
+ when %r"png", "gif", "bmp" then "image/#{type}"
13
+ when "txt" then "text/plain"
14
+ when %r"html?" then "text/html"
15
+ when "csv", "xml", "css", "js" then "text/#{type}"
16
+ else "application/x-#{type}"
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,115 @@
1
+ module Paperclip
2
+
3
+ # Defines the geometry of an image.
4
+ class Geometry
5
+ attr_accessor :height, :width, :modifier
6
+
7
+ # Gives a Geometry representing the given height and width
8
+ def initialize width = nil, height = nil, modifier = nil
9
+ @height = height.to_f
10
+ @width = width.to_f
11
+ @modifier = modifier
12
+ end
13
+
14
+ # Uses ImageMagick to determing the dimensions of a file, passed in as either a
15
+ # File or path.
16
+ def self.from_file file
17
+ file = file.path if file.respond_to? "path"
18
+ geometry = begin
19
+ Paperclip.run("identify", %Q[-format "%wx%h" "#{file}"[0]])
20
+ rescue PaperclipCommandLineError
21
+ ""
22
+ end
23
+ parse(geometry) ||
24
+ raise(NotIdentifiedByImageMagickError.new("#{file} is not recognized by the 'identify' command."))
25
+ end
26
+
27
+ # Parses a "WxH" formatted string, where W is the width and H is the height.
28
+ def self.parse string
29
+ if match = (string && string.match(/\b(\d*)x?(\d*)\b([\>\<\#\@\%^!])?/i))
30
+ Geometry.new(*match[1,3])
31
+ end
32
+ end
33
+
34
+ # True if the dimensions represent a square
35
+ def square?
36
+ height == width
37
+ end
38
+
39
+ # True if the dimensions represent a horizontal rectangle
40
+ def horizontal?
41
+ height < width
42
+ end
43
+
44
+ # True if the dimensions represent a vertical rectangle
45
+ def vertical?
46
+ height > width
47
+ end
48
+
49
+ # The aspect ratio of the dimensions.
50
+ def aspect
51
+ width / height
52
+ end
53
+
54
+ # Returns the larger of the two dimensions
55
+ def larger
56
+ [height, width].max
57
+ end
58
+
59
+ # Returns the smaller of the two dimensions
60
+ def smaller
61
+ [height, width].min
62
+ end
63
+
64
+ # Returns the width and height in a format suitable to be passed to Geometry.parse
65
+ def to_s
66
+ s = ""
67
+ s << width.to_i.to_s if width > 0
68
+ s << "x#{height.to_i}" if height > 0
69
+ s << modifier.to_s
70
+ s
71
+ end
72
+
73
+ # Same as to_s
74
+ def inspect
75
+ to_s
76
+ end
77
+
78
+ # Returns the scaling and cropping geometries (in string-based ImageMagick format)
79
+ # neccessary to transform this Geometry into the Geometry given. If crop is true,
80
+ # then it is assumed the destination Geometry will be the exact final resolution.
81
+ # In this case, the source Geometry is scaled so that an image containing the
82
+ # destination Geometry would be completely filled by the source image, and any
83
+ # overhanging image would be cropped. Useful for square thumbnail images. The cropping
84
+ # is weighted at the center of the Geometry.
85
+ def transformation_to dst, crop = false
86
+ if crop
87
+ ratio = Geometry.new( dst.width / self.width, dst.height / self.height )
88
+ scale_geometry, scale = scaling(dst, ratio)
89
+ crop_geometry = cropping(dst, ratio, scale)
90
+ else
91
+ scale_geometry = dst.to_s
92
+ end
93
+
94
+ [ scale_geometry, crop_geometry ]
95
+ end
96
+
97
+ private
98
+
99
+ def scaling dst, ratio
100
+ if ratio.horizontal? || ratio.square?
101
+ [ "%dx" % dst.width, ratio.width ]
102
+ else
103
+ [ "x%d" % dst.height, ratio.height ]
104
+ end
105
+ end
106
+
107
+ def cropping dst, ratio, scale
108
+ if ratio.horizontal? || ratio.square?
109
+ "%dx%d+%d+%d" % [ dst.width, dst.height, 0, (self.height * scale - dst.height) / 2 ]
110
+ else
111
+ "%dx%d+%d+%d" % [ dst.width, dst.height, (self.width * scale - dst.width) / 2, 0 ]
112
+ end
113
+ end
114
+ end
115
+ end