Further to this.
I was having the same difficulty when reprocessing files either through the rake task or using reprocess! directly.
Your patch solved that. Thank you.
has_attached_file :file, :styles => {
:medium => { :geometry => "300x300>", :format => :png },
:thumb => { :geometry => "100x100>", :format => :png },
:page => { :geometry => "800", :format => :png, :source_file_options => '-density 288', :convert_options => '-append' }
}
Working w/ the legacy styles style worked fine:
has_attached_file :file, :styles => { :medium => ["300x300>", :png], :thumb => ["100x100>", :png], :page => ["800", :png] }
-Tim