大虾pdf在Table单元格内旋转图片
Prawn pdf Rotate image inside Table Cell
大虾如何在 table 单元格内旋转图像。
images.each_with_index do |image,index|
my_image = {:image => open("#{image.authenticated_url}"), image_width: 220}
row += [my_image]
table([row], :cell_style => {:border_width => 0, :rotate => 90, :rotate_around => :center})
end
我的问题是,当我用 ipad/iphone 拍照时,大虾不会根据 exif 数据自动旋转图像。
我试图在虾中旋转图像,它没有用,但现在我只是在将图像上传到 S3(aws 服务器)之前删除这些 exif 数据
...
has_attached_file :image,
:storage => :s3,
:styles => { :original => ''},
...
这最后一行只是用另一个没有 exif 数据的样式覆盖了 :original 样式
大虾如何在 table 单元格内旋转图像。
images.each_with_index do |image,index|
my_image = {:image => open("#{image.authenticated_url}"), image_width: 220}
row += [my_image]
table([row], :cell_style => {:border_width => 0, :rotate => 90, :rotate_around => :center})
end
我的问题是,当我用 ipad/iphone 拍照时,大虾不会根据 exif 数据自动旋转图像。 我试图在虾中旋转图像,它没有用,但现在我只是在将图像上传到 S3(aws 服务器)之前删除这些 exif 数据
...
has_attached_file :image,
:storage => :s3,
:styles => { :original => ''},
...
这最后一行只是用另一个没有 exif 数据的样式覆盖了 :original 样式