如何使用 xsl-fo 和 apache fop 0.95 显示固定图像高度和宽度
我正在尝试修复使用 fop 0.95 生成的 pdf 中图像的高度和宽度。 这是用于它的代码
<fo:external-graphic src="s\image.png" height="2.00in" width="2.00in"/>
以下也不起作用
<fo:external-graphic src="s\image.png" content-height="scale-to-fit" height="2.00in" content-width="2.00in"/>
这些为我们提供了由 width 控制的图像。 总之,我试图拉伸图像而不是使用 fop 0.95 保持纵横比。有人对此有想法吗?
I am trying to fix the height and width of image in pdf generated using fop 0.95.
Here is the code used for it
<fo:external-graphic src="s\image.png" height="2.00in" width="2.00in"/>
Following also does not work
<fo:external-graphic src="s\image.png" content-height="scale-to-fit" height="2.00in" content-width="2.00in"/>
These gives us the image that is governed by width .
In summary I am trying to stretch the image rather than keeping the aspect ratio using fop 0.95.Does any one have idea for it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,无论指定的图像高度和宽度如何,fop 都会保持纵横比。这意味着 fop 默认情况下会进行统一缩放。
要根据您的规格获得相当拉伸的图像,您应该使用非均匀缩放。这样:
这将显示高度为 2.00 英寸、宽度为 2.00 英寸的 image.png 图像。
希望这有帮助。谢谢你,
By default fop keeps the aspect ratio regardless of the image height and width specified. This means fop does uniform scaling by default.
To have rather stretched image according to your specification, you should use non-uniform scaling. This way:
This will display your image.png image with height 2.00in and width 2.00in.
Hope this helps. Thank you,