我对这个问题使用了一个肮脏的“修复”。我只是制作了两次情节。一旦我删除了所有帧、标题等并保存为 png,在另一种情况下,我删除了实际数据并将我想要的所有组件作为矢量数据保存在 pdf 中。然后我使用 ImageMagick 将 png 转换为包含位图数据的 pdf,并使用 pdftk 覆盖 pdf 中的矢量数据。这是 matplotlib 页面中的一个 pcolor 示例,该示例以我刚才描述的方式进行了改编。
import matplotlib.pyplot as plt
import numpy as np
import os
for case in ['frame','data']:
# make these smaller to increase the resolution
dx, dy = 0.02, 0.02
# generate 2 2d grids for the x & y bounds
y, x = np.mgrid[slice(-3, 3 + dy, dy),
slice(-3, 3 + dx, dx)]
z = (1 - x / 2. + x ** 5 + y ** 3) * np.exp(-x ** 2 - y ** 2)
# x and y are bounds, so z should be the value *inside* those bounds.
# Therefore, remove the last value from the z array.
z = z[:-1, :-1]
z_min, z_max = -np.abs(z).max(), np.abs(z).max()
fig=plt.figure()
ax=fig.add_subplot(1,1,1)
im=plt.pcolor(x, y, z, cmap='RdBu', vmin=z_min, vmax=z_max)
plt.title('pcolor')
# set the limits of the plot to the limits of the data
plt.axis([x.min(), x.max(), y.min(), y.max()])
if case is 'frame':
im.remove()
plt.savefig("frame.pdf",transparent=True)
if case is 'data':
ax.axison=False
plt.title('')
plt.savefig("data.png",transparent=True)
os.system('convert data.png data.pdf')
os.system('pdftk frame.pdf background data.pdf output final_plot.pdf')
os.system('rm data.png data.pdf frame.pdf')
基本上它只是你已经在做的自动化版本......