import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])
fig.savefig("southeast_university.png", dpi=300)
这里我直接写保持那句话了.说实话 一般300dpi已经很可以了。
plt.savefig("output.png", dpi=300)
例如:
import numpy as np
from matplotlib import pyplot as plt
x = np.linspace(-6, 6, 1024)
y = np.sinc(x)
plt.plot(x, y)
plt.savefig('southeast_university.png', dpi=300)