如何在 matplotlib 中将图形保存为 pdf 作为光栅图像
我有一些使用 matplotlib 制作的复杂图表。使用 savefig 命令将它们保存为 pdf,使用矢量格式,并且 pdf 需要很长时间才能打开。有什么方法可以将图形保存为 pdf 作为光栅图像来解决这个问题吗?
I have some complex graphs made using matplotlib. Saving them to a pdf using the savefig command uses a vector format, and the pdf takes ages to open. Is there any way to save the figure to pdf as a raster image to get around this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以强制对单个图形元素进行光栅化,如下所示:
You can force individual figure elements to be rasterized like this:
我不知道,但你可以使用“转换”程序(ImageMagick)将 jpg 转换为 pdf:“convert file.jpg file.pdf”。
Not that I know, but you can use the 'convert' program (ImageMagick') to convert a jpg to a pdf: `convert file.jpg file.pdf'.