python reduce figure resolution code example
Example 1: increase figure size in matplotlib
plt.figure(figsize=(20,10))
Example 2: change image resolution pillow
size = 7016, 4961
im = Image.open("my_image.png")
im_resized = im.resize(size, Image.ANTIALIAS)
im_resized.save("my_image_resized.png", "PNG")
Example 3: change plot size matplotlib
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')