将参数传递给上传者/从上传者内部访问模型的属性/让用户选择缩略图大小

发布于 2024-12-09 04:49:54 字数 308 浏览 0 评论 0原文

我想将图像裁剪为用户从列表中选择的尺寸(例如 100x100px、200x200px...) 我如何将该属性传递给上传者或从上传者中获取模型的属性?

从上传器内部访问模型的属性如下不起作用:

version :thumb do
    thumbnail_size = model.thumbnail_size
    ...
    ...
end

我收到以下错误:

# 的未定义局部变量或方法“model”

谢谢! 弗洛里安

I would like to crop an image to the size the user has selected from a list (e.g. 100x100px, 200x200px,...)
How would I pass that attribute to the uploader or get the model's attribute from within the uploader?

Accessing the model's attribute from within the uploader as following does not work:

version :thumb do
    thumbnail_size = model.thumbnail_size
    ...
    ...
end

I get following error:

undefined local variable or method `model' for #

Thank you!
Florian

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的奇迹 2024-12-16 04:49:54

为了能够访问模型的属性,我必须添加一个操作助手。

class MyUploader < CarrierWave::Uploader::Base
  ...

  version :thumb do
    process :custom_thumbnail
    process :convert => 'jpg'
    ...
  end

  def custom_thumbnail
      width =  model.get_image_width     
      height = model.get_image_height

      manipulate! do |img|
        img.convert "#{width}x#{height}"
        img
      end
  end
end

In order to be able to access the model's attribute I had to add a manipulation helper.

class MyUploader < CarrierWave::Uploader::Base
  ...

  version :thumb do
    process :custom_thumbnail
    process :convert => 'jpg'
    ...
  end

  def custom_thumbnail
      width =  model.get_image_width     
      height = model.get_image_height

      manipulate! do |img|
        img.convert "#{width}x#{height}"
        img
      end
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文