Rails 5.2 ActiveStorage保存并读取Exif数据
Rails 5.2 ActiveStorage save and then read Exif data
On Rails 5.2 我正在尝试通过 ActiveStorage 保存头像,但似乎没有图像方向数据被保存在活动存储 blob 中。
我在创建操作中通过 file_field 保存头像 my
#user model
has_one_attached :avatar
private
def avatar_validation
if avatar.attached?
if avatar.blob.byte_size > 1000000
avatar.purge
errors.add(:avatar, 'file is too large')
elsif !avatar.blob.content_type.in?(%w[image/png image/jpg
image/jpeg])
avatar.purge
errors.add(:avatar, 'file type needs to be JPEG, JPG, or PNG')
end
end
end
我一直在阅读 minimagick https://github.com/minimagick/minimagick 的一些文档,但还没有弄清楚如何关联
user.avatar.blob
与
image = MiniMagick::Image.open("input.jpg")
我试过了
image = MiniMagick::Image.open("user.avatar.blob")
但运气不好
我需要尝试解决这个问题,因为一些存储在活动存储中的头像旋转了 90 度显示。
https://edgeguides.rubyonrails.org/active_storage_overview.html
谈论图像处理,但我也没有运气 gem rails 推荐
我认为您想在显示图像时使用变体而不是尝试编辑存储的图像。要固定方向,您可以说:
user.avatar.variant(auto_orient: true)
如果您想一次执行多个操作(而不是在管道中),请使用 combine_options
:
user.avatar.variant(combine_options: {
auto_orient: true,
gravity: 'center',
resize: '23x42', # Using real dimensions of course.
crop: '23x42+0+0'
})
编辑后的图像将被缓存,因此您只需在第一次访问时进行转换工作。你可能想把你的 variant
s 放入视图助手(或者甚至可能是模型问题,具体取决于你的需要)这样你就可以隔离噪音。
您可能需要参考 API 文档和指南:
On Rails 5.2 我正在尝试通过 ActiveStorage 保存头像,但似乎没有图像方向数据被保存在活动存储 blob 中。
我在创建操作中通过 file_field 保存头像 my
#user model
has_one_attached :avatar
private
def avatar_validation
if avatar.attached?
if avatar.blob.byte_size > 1000000
avatar.purge
errors.add(:avatar, 'file is too large')
elsif !avatar.blob.content_type.in?(%w[image/png image/jpg
image/jpeg])
avatar.purge
errors.add(:avatar, 'file type needs to be JPEG, JPG, or PNG')
end
end
end
我一直在阅读 minimagick https://github.com/minimagick/minimagick 的一些文档,但还没有弄清楚如何关联
user.avatar.blob
与
image = MiniMagick::Image.open("input.jpg")
我试过了
image = MiniMagick::Image.open("user.avatar.blob")
但运气不好
我需要尝试解决这个问题,因为一些存储在活动存储中的头像旋转了 90 度显示。
https://edgeguides.rubyonrails.org/active_storage_overview.html 谈论图像处理,但我也没有运气 gem rails 推荐
我认为您想在显示图像时使用变体而不是尝试编辑存储的图像。要固定方向,您可以说:
user.avatar.variant(auto_orient: true)
如果您想一次执行多个操作(而不是在管道中),请使用 combine_options
:
user.avatar.variant(combine_options: {
auto_orient: true,
gravity: 'center',
resize: '23x42', # Using real dimensions of course.
crop: '23x42+0+0'
})
编辑后的图像将被缓存,因此您只需在第一次访问时进行转换工作。你可能想把你的 variant
s 放入视图助手(或者甚至可能是模型问题,具体取决于你的需要)这样你就可以隔离噪音。
您可能需要参考 API 文档和指南: