如果图像超出边界框的尺寸,我想剪辑它。就像 CSS overflow: hidden 一样。例如。
pdf.grid([0, 0], [3, 27]).bounding_box do
pdf.image image_file
end
现在,如果这个图像比它大,它会溢出边界框之外。当图像超出边界框时,有什么方法可以剪辑图像。? 我知道在使用 text_box 时这对于文本是可能的。
如果图像超出边界框的尺寸,我想剪辑它。就像 CSS overflow: hidden 一样。例如。
pdf.grid([0, 0], [3, 27]).bounding_box do
pdf.image image_file
end
现在,如果这个图像比它大,它会溢出边界框之外。当图像超出边界框时,有什么方法可以剪辑图像。? 我知道在使用 text_box 时这对于文本是可能的。
您可以设置图像的大小或使图像缩放以使其适合特定区域同时保持比例,不要相信您可以裁剪图像。
如果您的页面不是动态的,即图像区域将始终相同,这应该没问题。
pdf.image "image_file_path_&_name", :position => :center, :fit => [100,450];
这是基于 v0.8.4。
不幸的是,目前似乎没有合适的方法将图像裁剪到边界框。面对这个问题,我想出了这个美丽:
class SamplePdf
include Prawn::View
def initialize
crop_width = 100 # your width here
crop_height = 50 # your height here
image_path = '/path/to/your_image.jpg'
bounding_box [0, 0], width: crop_width, height: crop_height do
pdf_obj, _ = build_image_object(image_path)
x, y = document.send(:image_position, crop_width, crop_height, {})
document.send(:move_text_position, crop_height)
label = "I#{document.send(:next_image_id)}"
document.state.page.xobjects.merge!(label => pdf_obj)
cm_params = PDF::Core.real_params([crop_width, 0, 0, crop_height, x, y - crop_height])
document.renderer.add_content("\nq\n#{cm_params} cm\n/#{label} Do\nQ")
end
end
end
它基本上适应了该Prawn::Images#image
方法,但分别跳过了图像尺寸和缩放的计算。
这不是一个干净的解决方案。如果您找到更好的,请随时通知我。
你应该记住,这个片段利用了一些不属于 Prawn 的公共 API 的实现细节,并且可以随时更改。
在撰写本文时,Prawn 2.0.1 是最新版本。