3

这是一个棘手的问题,我希望有人能帮助我。

我有一个article_set,里面有很多set_items,每个set item都有一张图片。我想创建一个图像的拼贴画,所以一个图像中的一个,并用carrierwave保存它。

这就是我的模型中发生的事情:

require 'RMagick'

class ArticleSet < ActiveRecord::Base

    # ...

    after_create :create_collage  
    mount_uploader :blog_image, BlogImageUploader

    def create_collage
      # load the template
      template = Magick::Image.read("#{RAILS_ROOT}/public/images/set_template.png").first

      # go through all set items by z_index and add lay it over the template
      for item in self.set_items
        photo = Magick::Image.read(item.product.assets.first.image.url(:thumb).to_s).first
        photo.scale(item.width, item.height)
        # composite item over template offsetting pos_x and pos_y for the template border
        template.composite!(photo, item.pos_x, item.pos_y, Magick::OverCompositeOp)
      end

      # save composite image to JPG
      template.write("set_#{self.id}_#{Time.now.to_i}.jpg")

      #save and upload to s3

      self.blog_image.store!(template)
      self.blog_image = self.blog_image.store_path
      self.write_carrierwave_identifier
      self.save  

    end

end

到目前为止,一切都很好。我可以保存集合并通过这种方法运行,但我猜是最后一部分

       #save and upload to s3

      self.blog_image.store!(template)
      self.blog_image = self.blog_image.store_path
      self.write_carrierwave_identifier
      self.save  

可能是不正确的,在我的数据库中,我只得到 blog_image 的 NULL 值。当然,它应该包含生成文件的文件名......非常感谢任何帮助。

谢谢

4

1 回答 1

1

最后第三行看起来有点狡猾:

self.blog_image = self.blog_image.store_path

如果您删除它,我很确定它应该可以工作。

于 2011-07-18T11:58:21.013 回答