直接保存时Matplotlib无法在曲线下正确渲染渐变

时间:2019-05-31 14:03:34

标签: python matplotlib

我正在使用从以下位置获得的一些示例代码: https://stackoverflow.com/a/29331211/9469766

我正在尝试另存为pdf,但是每当执行此操作时,渐变颜色的格式均会错误设置。但是,如果仅显示而不是将文件保存为.png,则渐变会正确显示。这使我相信这就是问题的.pdf格式。另存为pdf时,是否需要设置特定的参数?

预期的图像输出: Expected Image Output

实际图像输出 Actual Image Output

我的代码:

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.colors as mcolors
from matplotlib.patches import Polygon
np.random.seed(1977)
import os

def main():
    home_dir = os.path.expanduser('~/Desktop/test2.pdf')
    x, y = generate_data(100)
    for _ in range(5):
        gradient_fill(*generate_data(100))
    # plt.show()
    plt.savefig(home_dir, rasterized = True, dpi=300)
    plt.close()

def generate_data(num):
    x = np.linspace(0, 100, num)
    y = np.random.normal(0, 1, num).cumsum()
    return x, y

def gradient_fill(x, y, fill_color=None, ax=None, **kwargs):
    """
    """
    if ax is None:
        ax = plt.gca()

    line, = ax.plot(x, y, **kwargs)
    if fill_color is None:
        fill_color = line.get_color()

    zorder = line.get_zorder()
    alpha = line.get_alpha()
    alpha = 1.0 if alpha is None else alpha

    z = np.empty((100, 1, 4), dtype=float)
    rgb = mcolors.colorConverter.to_rgb(fill_color)
    z[:,:,:3] = rgb
    z[:,:,-1] = np.linspace(0, alpha, 100)[:,None]

    xmin, xmax, ymin, ymax = x.min(), x.max(), y.min(), y.max()
    im = ax.imshow(z, aspect='auto', extent=[xmin, xmax, ymin, ymax],
                   origin='lower', zorder=zorder)

    xy = np.column_stack([x, y])
    xy = np.vstack([[xmin, ymin], xy, [xmax, ymin], [xmin, ymin]])
    clip_path = Polygon(xy, facecolor='none', edgecolor='none', closed=True)
    ax.add_patch(clip_path)
    im.set_clip_path(clip_path)

    ax.autoscale(True)
    return line, im

main()

1 个答案:

答案 0 :(得分:0)

问题与https://github.com/matplotlib/matplotlib/issues/7151中的问题相同。

解决方案是使用"image.composite_image" rc参数并将其设置为False。

plt.rcParams["image.composite_image"] =False