通过 librsvg 缩放矢量图像

发布于 2024-12-06 10:59:58 字数 133 浏览 1 评论 0原文

在通过 librsvg 获取其像素缓冲区之前是否可以缩放 svg?我可以看到像 rsvg_pixbuf_from_file_at_zoom 这样的 API,但它被标记为已弃用。

还有其他方法吗?如果可能的话,我想避免使用 cairo 。

Is it possible to scale the svg before getting its pixel buffer through librsvg? I can see API like rsvg_pixbuf_from_file_at_zoom but it is marked as deprecated.

Is there some other way to do it? I wan to avoid using cairo for this, if possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

只为守护你 2024-12-13 10:59:58

您没有太多选择,要么是:

  • 使用像 rsvg_pixbuf_from_file_at_size() 这样的已弃用函数(这并不是那么糟糕,这个函数不太可能很快就会消失)
  • 或使用 RsvgHandle 对象使用 rsvg_handle_new_from_file() 和 rsvg_handle_render_cairo() 在开罗表面上创建 使用

如果您想在最后使用 GdkPixbuf,则可以将 cairo 的使用限制在最低限度,方法是:

  • rsvg_handle_new_from_file() 创建 RsvgHandle
  • 转换矩阵
  • 创建 cairo 上下文并设置要使用 rsvg_handle_render_cairo() 渲染 svg 的
  • 使用 rsvg_handle_get_pixbuf() 获取 pixbuf

You do not have many choices, it's either:

  • using a deprecated function like rsvg_pixbuf_from_file_at_size() (which is not that bad, it's not very likely this function will go away any time soon)
  • or using the RsvgHandle object with rsvg_handle_new_from_file() and rsvg_handle_render_cairo() on a cairo surface create at the right dimension

You can limit the usage of cairo to a minimum if you want a GdkPixbuf at the end by:

  • creating a RsvgHandle with rsvg_handle_new_from_file()
  • creating a cairo context and setting up the transformation matrix you want
  • render the svg with rsvg_handle_render_cairo()
  • grab the pixbuf with rsvg_handle_get_pixbuf()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文