如何使用 xsl-fo 和 apache fop 0.95 显示固定图像高度和宽度

发布于 2024-08-16 04:37:22 字数 389 浏览 10 评论 0原文

我正在尝试修复使用 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 技术交流群。

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

发布评论

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

评论(1

混吃等死 2024-08-23 04:37:22

这些给我们的图像是
由宽度控制。总结来说我是
尝试拉伸图像
而不是使用保持纵横比
FOP 0.95。

默认情况下,无论指定的图像高度和宽度如何,fop 都会保持纵横比。这意味着 fop 默认情况下会进行统一缩放。

要根据您的规格获得相当拉伸的图像,您应该使用非均匀缩放。这样:

<fo:external-graphic src="s\image.png"  content-height="scale-to-fit" height="2.00in"  content-width="2.00in" scaling="non-uniform"/>

这将显示高度为 2.00 英寸、宽度为 2.00 英寸的 image.png 图像。

希望这有帮助。谢谢你,

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.

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:

<fo:external-graphic src="s\image.png"  content-height="scale-to-fit" height="2.00in"  content-width="2.00in" scaling="non-uniform"/>

This will display your image.png image with height 2.00in and width 2.00in.

Hope this helps. Thank you,

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