bamnet-paperclip 2.3.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/LICENSE +26 -0
  2. data/README.rdoc +187 -0
  3. data/Rakefile +103 -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.rb +386 -0
  9. data/lib/paperclip/attachment.rb +414 -0
  10. data/lib/paperclip/callback_compatability.rb +33 -0
  11. data/lib/paperclip/geometry.rb +115 -0
  12. data/lib/paperclip/interpolations.rb +108 -0
  13. data/lib/paperclip/iostream.rb +59 -0
  14. data/lib/paperclip/matchers.rb +4 -0
  15. data/lib/paperclip/matchers/have_attached_file_matcher.rb +49 -0
  16. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rb +66 -0
  17. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rb +48 -0
  18. data/lib/paperclip/matchers/validate_attachment_size_matcher.rb +83 -0
  19. data/lib/paperclip/processor.rb +49 -0
  20. data/lib/paperclip/storage.rb +439 -0
  21. data/lib/paperclip/thumbnail.rb +73 -0
  22. data/lib/paperclip/upfile.rb +49 -0
  23. data/shoulda_macros/paperclip.rb +117 -0
  24. data/tasks/paperclip_tasks.rake +79 -0
  25. data/test/attachment_test.rb +780 -0
  26. data/test/database.yml +4 -0
  27. data/test/fixtures/12k.png +0 -0
  28. data/test/fixtures/50x50.png +0 -0
  29. data/test/fixtures/5k.png +0 -0
  30. data/test/fixtures/bad.png +1 -0
  31. data/test/fixtures/s3.yml +8 -0
  32. data/test/fixtures/text.txt +0 -0
  33. data/test/fixtures/twopage.pdf +0 -0
  34. data/test/geometry_test.rb +177 -0
  35. data/test/helper.rb +109 -0
  36. data/test/integration_test.rb +483 -0
  37. data/test/interpolations_test.rb +124 -0
  38. data/test/iostream_test.rb +78 -0
  39. data/test/matchers/have_attached_file_matcher_test.rb +21 -0
  40. data/test/matchers/validate_attachment_content_type_matcher_test.rb +30 -0
  41. data/test/matchers/validate_attachment_presence_matcher_test.rb +21 -0
  42. data/test/matchers/validate_attachment_size_matcher_test.rb +50 -0
  43. data/test/paperclip_test.rb +327 -0
  44. data/test/processor_test.rb +10 -0
  45. data/test/storage_test.rb +303 -0
  46. data/test/thumbnail_test.rb +227 -0
  47. data/test/upfile_test.rb +28 -0
  48. metadata +161 -0
@@ -0,0 +1,439 @@
1
+ module Paperclip
2
+ module Storage
3
+
4
+ # The default place to store attachments is in the filesystem. Files on the local
5
+ # filesystem can be very easily served by Apache without requiring a hit to your app.
6
+ # They also can be processed more easily after they've been saved, as they're just
7
+ # normal files. There is one Filesystem-specific option for has_attached_file.
8
+ # * +path+: The location of the repository of attachments on disk. This can (and, in
9
+ # almost all cases, should) be coordinated with the value of the +url+ option to
10
+ # allow files to be saved into a place where Apache can serve them without
11
+ # hitting your app. Defaults to
12
+ # ":rails_root/public/:attachment/:id/:style/:basename.:extension"
13
+ # By default this places the files in the app's public directory which can be served
14
+ # directly. If you are using capistrano for deployment, a good idea would be to
15
+ # make a symlink to the capistrano-created system directory from inside your app's
16
+ # public directory.
17
+ # See Paperclip::Attachment#interpolate for more information on variable interpolaton.
18
+ # :path => "/var/app/attachments/:class/:id/:style/:basename.:extension"
19
+ module Filesystem
20
+ def self.extended base
21
+ end
22
+
23
+ def exists?(style = default_style)
24
+ if original_filename
25
+ File.exist?(path(style))
26
+ else
27
+ false
28
+ end
29
+ end
30
+
31
+ # Returns representation of the data of the file assigned to the given
32
+ # style, in the format most representative of the current storage.
33
+ def to_file style = default_style
34
+ @queued_for_write[style] || (File.new(path(style), 'rb') if exists?(style))
35
+ end
36
+
37
+ def flush_writes #:nodoc:
38
+ @queued_for_write.each do |style, file|
39
+ file.close
40
+ FileUtils.mkdir_p(File.dirname(path(style)))
41
+ log("saving #{path(style)}")
42
+ FileUtils.mv(file.path, path(style))
43
+ FileUtils.chmod(0644, path(style))
44
+ end
45
+ @queued_for_write = {}
46
+ end
47
+
48
+ def flush_deletes #:nodoc:
49
+ @queued_for_delete.each do |path|
50
+ begin
51
+ log("deleting #{path}")
52
+ FileUtils.rm(path) if File.exist?(path)
53
+ rescue Errno::ENOENT => e
54
+ # ignore file-not-found, let everything else pass
55
+ end
56
+ begin
57
+ while(true)
58
+ path = File.dirname(path)
59
+ FileUtils.rmdir(path)
60
+ end
61
+ rescue Errno::EEXIST, Errno::ENOTEMPTY, Errno::ENOENT, Errno::EINVAL, Errno::ENOTDIR
62
+ # Stop trying to remove parent directories
63
+ rescue SystemCallError => e
64
+ log("There was an unexpected error while deleting directories: #{e.class}")
65
+ # Ignore it
66
+ end
67
+ end
68
+ @queued_for_delete = []
69
+ end
70
+ end
71
+
72
+ # Amazon's S3 file hosting service is a scalable, easy place to store files for
73
+ # distribution. You can find out more about it at http://aws.amazon.com/s3
74
+ # There are a few S3-specific options for has_attached_file:
75
+ # * +s3_credentials+: Takes a path, a File, or a Hash. The path (or File) must point
76
+ # to a YAML file containing the +access_key_id+ and +secret_access_key+ that Amazon
77
+ # gives you. You can 'environment-space' this just like you do to your
78
+ # database.yml file, so different environments can use different accounts:
79
+ # development:
80
+ # access_key_id: 123...
81
+ # secret_access_key: 123...
82
+ # test:
83
+ # access_key_id: abc...
84
+ # secret_access_key: abc...
85
+ # production:
86
+ # access_key_id: 456...
87
+ # secret_access_key: 456...
88
+ # This is not required, however, and the file may simply look like this:
89
+ # access_key_id: 456...
90
+ # secret_access_key: 456...
91
+ # In which case, those access keys will be used in all environments. You can also
92
+ # put your bucket name in this file, instead of adding it to the code directly.
93
+ # This is useful when you want the same account but a different bucket for
94
+ # development versus production.
95
+ # * +s3_permissions+: This is a String that should be one of the "canned" access
96
+ # policies that S3 provides (more information can be found here:
97
+ # http://docs.amazonwebservices.com/AmazonS3/2006-03-01/RESTAccessPolicy.html#RESTCannedAccessPolicies)
98
+ # The default for Paperclip is :public_read.
99
+ # * +s3_protocol+: The protocol for the URLs generated to your S3 assets. Can be either
100
+ # 'http' or 'https'. Defaults to 'http' when your :s3_permissions are :public_read (the
101
+ # default), and 'https' when your :s3_permissions are anything else.
102
+ # * +s3_headers+: A hash of headers such as {'Expires' => 1.year.from_now.httpdate}
103
+ # * +bucket+: This is the name of the S3 bucket that will store your files. Remember
104
+ # that the bucket must be unique across all of Amazon S3. If the bucket does not exist
105
+ # Paperclip will attempt to create it. The bucket name will not be interpolated.
106
+ # You can define the bucket as a Proc if you want to determine it's name at runtime.
107
+ # Paperclip will call that Proc with attachment as the only argument.
108
+ # * +s3_host_alias+: The fully-qualified domain name (FQDN) that is the alias to the
109
+ # S3 domain of your bucket. Used with the :s3_alias_url url interpolation. See the
110
+ # link in the +url+ entry for more information about S3 domains and buckets.
111
+ # * +url+: There are three options for the S3 url. You can choose to have the bucket's name
112
+ # placed domain-style (bucket.s3.amazonaws.com) or path-style (s3.amazonaws.com/bucket).
113
+ # Lastly, you can specify a CNAME (which requires the CNAME to be specified as
114
+ # :s3_alias_url. You can read more about CNAMEs and S3 at
115
+ # http://docs.amazonwebservices.com/AmazonS3/latest/index.html?VirtualHosting.html
116
+ # Normally, this won't matter in the slightest and you can leave the default (which is
117
+ # path-style, or :s3_path_url). But in some cases paths don't work and you need to use
118
+ # the domain-style (:s3_domain_url). Anything else here will be treated like path-style.
119
+ # NOTE: If you use a CNAME for use with CloudFront, you can NOT specify https as your
120
+ # :s3_protocol; This is *not supported* by S3/CloudFront. Finally, when using the host
121
+ # alias, the :bucket parameter is ignored, as the hostname is used as the bucket name
122
+ # by S3.
123
+ # * +path+: This is the key under the bucket in which the file will be stored. The
124
+ # URL will be constructed from the bucket and the path. This is what you will want
125
+ # to interpolate. Keys should be unique, like filenames, and despite the fact that
126
+ # S3 (strictly speaking) does not support directories, you can still use a / to
127
+ # separate parts of your file name.
128
+ module S3
129
+ def self.extended base
130
+ begin
131
+ require 'aws/s3'
132
+ rescue LoadError => e
133
+ e.message << " (You may need to install the aws-s3 gem)"
134
+ raise e
135
+ end
136
+
137
+ base.instance_eval do
138
+ @s3_credentials = parse_credentials(@options[:s3_credentials])
139
+ @bucket = @options[:bucket] || @s3_credentials[:bucket]
140
+ @bucket = @bucket.call(self) if @bucket.is_a?(Proc)
141
+ @s3_options = @options[:s3_options] || {}
142
+ @s3_permissions = @options[:s3_permissions] || :public_read
143
+ @s3_protocol = @options[:s3_protocol] || (@s3_permissions == :public_read ? 'http' : 'https')
144
+ @s3_headers = @options[:s3_headers] || {}
145
+ @s3_host_alias = @options[:s3_host_alias]
146
+ @url = ":s3_path_url" unless @url.to_s.match(/^:s3.*url$/)
147
+ AWS::S3::Base.establish_connection!( @s3_options.merge(
148
+ :access_key_id => @s3_credentials[:access_key_id],
149
+ :secret_access_key => @s3_credentials[:secret_access_key]
150
+ ))
151
+ end
152
+ Paperclip.interpolates(:s3_alias_url) do |attachment, style|
153
+ "#{attachment.s3_protocol}://#{attachment.s3_host_alias}/#{attachment.path(style).gsub(%r{^/}, "")}"
154
+ end
155
+ Paperclip.interpolates(:s3_path_url) do |attachment, style|
156
+ "#{attachment.s3_protocol}://s3.amazonaws.com/#{attachment.bucket_name}/#{attachment.path(style).gsub(%r{^/}, "")}"
157
+ end
158
+ Paperclip.interpolates(:s3_domain_url) do |attachment, style|
159
+ "#{attachment.s3_protocol}://#{attachment.bucket_name}.s3.amazonaws.com/#{attachment.path(style).gsub(%r{^/}, "")}"
160
+ end
161
+ end
162
+
163
+ def bucket_name
164
+ @bucket
165
+ end
166
+
167
+ def s3_host_alias
168
+ @s3_host_alias
169
+ end
170
+
171
+ def parse_credentials creds
172
+ creds = find_credentials(creds).stringify_keys
173
+ (creds[RAILS_ENV] || creds).symbolize_keys
174
+ end
175
+
176
+ def exists?(style = default_style)
177
+ if original_filename
178
+ AWS::S3::S3Object.exists?(path(style), bucket_name)
179
+ else
180
+ false
181
+ end
182
+ end
183
+
184
+ def s3_protocol
185
+ @s3_protocol
186
+ end
187
+
188
+ # Returns representation of the data of the file assigned to the given
189
+ # style, in the format most representative of the current storage.
190
+ def to_file style = default_style
191
+ return @queued_for_write[style] if @queued_for_write[style]
192
+ file = Tempfile.new(path(style))
193
+ file.write(AWS::S3::S3Object.value(path(style), bucket_name))
194
+ file.rewind
195
+ return file
196
+ end
197
+
198
+ def flush_writes #:nodoc:
199
+ @queued_for_write.each do |style, file|
200
+ begin
201
+ log("saving #{path(style)}")
202
+ AWS::S3::S3Object.store(path(style),
203
+ file,
204
+ bucket_name,
205
+ {:content_type => instance_read(:content_type),
206
+ :access => @s3_permissions,
207
+ }.merge(@s3_headers))
208
+ rescue AWS::S3::ResponseError => e
209
+ raise
210
+ end
211
+ end
212
+ @queued_for_write = {}
213
+ end
214
+
215
+ def flush_deletes #:nodoc:
216
+ @queued_for_delete.each do |path|
217
+ begin
218
+ log("deleting #{path}")
219
+ AWS::S3::S3Object.delete(path, bucket_name)
220
+ rescue AWS::S3::ResponseError
221
+ # Ignore this.
222
+ end
223
+ end
224
+ @queued_for_delete = []
225
+ end
226
+
227
+ def find_credentials creds
228
+ case creds
229
+ when File
230
+ YAML::load(ERB.new(File.read(creds.path)).result)
231
+ when String
232
+ YAML::load(ERB.new(File.read(creds)).result)
233
+ when Hash
234
+ creds
235
+ else
236
+ raise ArgumentError, "Credentials are not a path, file, or hash."
237
+ end
238
+ end
239
+ private :find_credentials
240
+
241
+ end
242
+
243
+ # Store files in a database.
244
+ #
245
+ # Usage is identical to the file system storage version, except:
246
+ #
247
+ # 1. In your model specify the "database" storage option; for example:
248
+ # has_attached_file :avatar, :storage => :database
249
+ #
250
+ # 2. The file will be stored in a column called [attachment name]_file (e.g. "avatar_file") by default.
251
+ #
252
+ # To specify a different column name, use :column, like this:
253
+ # has_attached_file :avatar, :storage => :database, :column => 'avatar_data'
254
+ #
255
+ # If you have defined different styles, these files will be stored in additional columns called
256
+ # [attachment name]_[style name]_file (e.g. "avatar_thumb_file") by default.
257
+ #
258
+ # To specify different column names for styles, use :column in the style definition, like this:
259
+ # has_attached_file :avatar,
260
+ # :storage => :database,
261
+ # :styles => {
262
+ # :medium => {:geometry => "300x300>", :column => 'medium_file'},
263
+ # :thumb => {:geometry => "100x100>", :column => 'thumb_file'}
264
+ # }
265
+ #
266
+ # 3. You need to create these new columns in your migrations or you'll get an exception. Example:
267
+ # add_column :users, :avatar_file, :binary
268
+ # add_column :users, :avatar_medium_file, :binary
269
+ # add_column :users, :avatar_thumb_file, :binary
270
+ #
271
+ # Note the "binary" migration will not work for the LONGBLOB type in MySQL for the
272
+ # file_contents column. You may need to craft a SQL statement for your migration,
273
+ # depending on which database server you are using. Here's an example migration for MySQL:
274
+ # execute 'ALTER TABLE users ADD COLUMN avatar_file LONGBLOB'
275
+ # execute 'ALTER TABLE users ADD COLUMN avatar_medium_file LONGBLOB'
276
+ # execute 'ALTER TABLE users ADD COLUMN avatar_thumb_file LONGBLOB'
277
+ #
278
+ # 4. To avoid performance problems loading all of the BLOB columns every time you access
279
+ # your ActiveRecord object, a class method is provided on your model called
280
+ # “select_without_file_columns_for.” This is set to a :select scope hash that will
281
+ # instruct ActiveRecord::Base.find to load all of the columns except the BLOB/file data columns.
282
+ #
283
+ # If you’re using Rails 2.3, you can specify this as a default scope:
284
+ # default_scope select_without_file_columns_for(:avatar)
285
+ #
286
+ # Or if you’re using Rails 2.1 or 2.2 you can use it to create a named scope:
287
+ # named_scope :without_file_data, select_without_file_columns_for(:avatar)
288
+ #
289
+ # 5. By default, URLs will be set to this pattern:
290
+ # /:relative_root/:class/:attachment/:id?style=:style
291
+ #
292
+ # Example:
293
+ # /app-root-url/users/avatars/23?style=original
294
+ #
295
+ # The idea here is that to retrieve a file from the database storage, you will need some
296
+ # controller's code to be executed.
297
+ #
298
+ # Once you pick a controller to use for downloading, you can add this line
299
+ # to generate the download action for the default URL/action (the plural attachment name),
300
+ # "avatars" in this example:
301
+ # downloads_files_for :user, :avatar
302
+ #
303
+ # Or you can write a download method manually if there are security, logging or other
304
+ # requirements.
305
+ #
306
+ # If you prefer a different URL for downloading files you can specify that in the model; e.g.:
307
+ # has_attached_file :avatar, :storage => :database, :url => '/users/show_avatar/:id/:style'
308
+ #
309
+ # 6. Add a route for the download to the controller which will handle downloads, if necessary.
310
+ #
311
+ # The default URL, /:relative_root/:class/:attachment/:id?style=:style, will be matched by
312
+ # the default route: :controller/:action/:id
313
+ #
314
+ module Database
315
+ def self.extended base
316
+ base.instance_eval do
317
+ @file_columns = @options[:file_columns]
318
+ if @url == base.class.default_options[:url]
319
+ @url = ":relative_root/:class/:attachment/:id?style=:style"
320
+ end
321
+ end
322
+ base.class.interpolations[:relative_root] = lambda do |attachment, style|
323
+ begin
324
+ if ActionController::AbstractRequest.respond_to?(:relative_url_root)
325
+ relative_url_root = ActionController::AbstractRequest.relative_url_root
326
+ end
327
+ rescue NameError
328
+ end
329
+ if !relative_url_root && ActionController::Base.respond_to?(:relative_url_root)
330
+ relative_url_root = ActionController::Base.relative_url_root
331
+ end
332
+ relative_url_root
333
+ end
334
+ ActiveRecord::Base.logger.info("[paperclip] Database Storage Initalized.")
335
+ end
336
+
337
+ def column_for_style style
338
+ @file_columns[style.to_sym]
339
+ end
340
+
341
+ def instance_read_file(style)
342
+ column = column_for_style(style)
343
+ responds = instance.respond_to?(column)
344
+ cached = self.instance_variable_get("@_#{column}")
345
+ return cached if cached
346
+ # The blob attribute will not be present if select_without_file_columns_for was used
347
+ instance.reload :select => column if !instance.attribute_present?(column) && !instance.new_record?
348
+ instance.send(column) if responds
349
+ end
350
+
351
+ def instance_write_file(style, value)
352
+ setter = :"#{column_for_style(style)}="
353
+ responds = instance.respond_to?(setter)
354
+ self.instance_variable_set("@_#{setter.to_s.chop}", value)
355
+ instance.send(setter, value) if responds
356
+ end
357
+
358
+ def file_contents(style = default_style)
359
+ instance_read_file(style)
360
+ end
361
+ alias_method :data, :file_contents
362
+
363
+ def exists?(style = default_style)
364
+ !file_contents(style).nil?
365
+ end
366
+
367
+ # Returns representation of the data of the file assigned to the given
368
+ # style, in the format most representative of the current storage.
369
+ def to_file style = default_style
370
+ if @queued_for_write[style]
371
+ @queued_for_write[style]
372
+ elsif exists?(style)
373
+ tempfile = Tempfile.new instance_read(:file_name)
374
+ tempfile.write file_contents(style)
375
+ tempfile
376
+ else
377
+ nil
378
+ end
379
+ end
380
+ alias_method :to_io, :to_file
381
+
382
+ def path style = default_style
383
+ original_filename.nil? ? nil : column_for_style(style)
384
+ end
385
+
386
+ def assign uploaded_file
387
+
388
+ # Assign standard metadata attributes and perform post processing as usual
389
+ super
390
+
391
+ # Save the file contents for all styles in ActiveRecord immediately (before save)
392
+ @queued_for_write.each do |style, file|
393
+ instance_write_file(style, file.read)
394
+ end
395
+
396
+ # If we are assigning another Paperclip attachment, then fixup the
397
+ # filename and content type; necessary since Tempfile is used in to_file
398
+ if uploaded_file.is_a?(Paperclip::Attachment)
399
+ instance_write(:file_name, uploaded_file.instance_read(:file_name))
400
+ instance_write(:content_type, uploaded_file.instance_read(:content_type))
401
+ end
402
+ end
403
+
404
+ def queue_existing_for_delete
405
+ [:original, *@styles.keys].uniq.each do |style|
406
+ instance_write_file(style, nil)
407
+ end
408
+ instance_write(:file_name, nil)
409
+ instance_write(:content_type, nil)
410
+ instance_write(:file_size, nil)
411
+ instance_write(:updated_at, nil)
412
+ end
413
+
414
+ def flush_writes
415
+ @queued_for_write = {}
416
+ end
417
+
418
+ def flush_deletes
419
+ @queued_for_delete = []
420
+ end
421
+
422
+ module ControllerClassMethods
423
+ def self.included(base)
424
+ base.extend(self)
425
+ end
426
+ def downloads_files_for(model, attachment)
427
+ define_method("#{attachment.to_s.pluralize}") do
428
+ model_record = Object.const_get(model.to_s.camelize.to_sym).find(params[:id])
429
+ style = params[:style] ? params[:style] : 'original'
430
+ send_data model_record.send(attachment).file_contents(style),
431
+ :filename => model_record.send("#{attachment}_file_name".to_sym),
432
+ :type => model_record.send("#{attachment}_content_type".to_sym)
433
+ end
434
+ end
435
+ end
436
+ end
437
+
438
+ end
439
+ end
@@ -0,0 +1,73 @@
1
+ module Paperclip
2
+ # Handles thumbnailing images that are uploaded.
3
+ class Thumbnail < Processor
4
+
5
+ attr_accessor :current_geometry, :target_geometry, :format, :whiny, :convert_options, :source_file_options
6
+
7
+ # Creates a Thumbnail object set to work on the +file+ given. It
8
+ # will attempt to transform the image into one defined by +target_geometry+
9
+ # which is a "WxH"-style string. +format+ will be inferred from the +file+
10
+ # unless specified. Thumbnail creation will raise no errors unless
11
+ # +whiny+ is true (which it is, by default. If +convert_options+ is
12
+ # set, the options will be appended to the convert command upon image conversion
13
+ def initialize file, options = {}, attachment = nil
14
+ super
15
+ geometry = options[:geometry]
16
+ @file = file
17
+ @crop = geometry[-1,1] == '#'
18
+ @target_geometry = Geometry.parse geometry
19
+ @current_geometry = Geometry.from_file @file
20
+ @source_file_options = options[:source_file_options]
21
+ @convert_options = options[:convert_options]
22
+ @whiny = options[:whiny].nil? ? true : options[:whiny]
23
+ @format = options[:format]
24
+
25
+ @current_format = File.extname(@file.path)
26
+ @basename = File.basename(@file.path, @current_format)
27
+ end
28
+
29
+ # Returns true if the +target_geometry+ is meant to crop.
30
+ def crop?
31
+ @crop
32
+ end
33
+
34
+ # Returns true if the image is meant to make use of additional convert options.
35
+ def convert_options?
36
+ !@convert_options.nil? && !@convert_options.empty?
37
+ end
38
+
39
+ # Performs the conversion of the +file+ into a thumbnail. Returns the Tempfile
40
+ # that contains the new image.
41
+ def make
42
+ src = @file
43
+ dst = Tempfile.new([@basename, @format].compact.join("."))
44
+ dst.binmode
45
+
46
+ command = <<-end_command
47
+ #{ source_file_options }
48
+ "#{ File.expand_path(src.path) }[0]"
49
+ #{ transformation_command }
50
+ "#{ File.expand_path(dst.path) }"
51
+ end_command
52
+
53
+ begin
54
+ success = Paperclip.run("convert", command.gsub(/\s+/, " "))
55
+ rescue PaperclipCommandLineError
56
+ raise PaperclipError, "There was an error processing the thumbnail for #{@basename}" if @whiny
57
+ end
58
+
59
+ dst
60
+ end
61
+
62
+ # Returns the command ImageMagick's +convert+ needs to transform the image
63
+ # into the thumbnail.
64
+ def transformation_command
65
+ scale, crop = @current_geometry.transformation_to(@target_geometry, crop?)
66
+ trans = ""
67
+ trans << " -resize \"#{scale}\"" unless scale.nil? || scale.empty?
68
+ trans << " -crop \"#{crop}\" +repage" if crop
69
+ trans << " #{convert_options}" if convert_options?
70
+ trans
71
+ end
72
+ end
73
+ end