解决python中导出的pdf不能编辑问题

December 17, 2023
测试
测试
测试
测试
1 分钟阅读

python默认输出的pdf格式是type3,这种不能在 Adobe Illustrator中编辑文字等信息,需要改成type42.

import matplotlib as mpl
mpl.rcParams['pdf.fonttype'] = 42

或者直接更改matplotlib的默认设置: 找到matplotlib路径下的matplotlibrc文件,将matplotlibrc里pdf.fonttype : 3改成42

pdf.fonttype : 42 # Output Type 3 (Type3) or Type 42 (TrueType)

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多