how to save matplotlib figure to png
In [5]: plt.savefig('books_read.png')
how to save matplotlib figure to png
In [5]: plt.savefig('books_read.png')
save plot in python
plt.savefig('books_read.png')
python plot save figure to png
from matplotlib import pyplot as plt
plt.savefig('foo.png')
plt.savefig('foo.pdf')
convert files from jpg to png and save in a new directory python
from PIL import Image
import os
directory = r'D:PATH'
c=1
for filename in os.listdir(directory):
if filename.endswith(".jpg"):
im = Image.open(filename)
name='img'+str(c)+'.png'
rgb_im = im.convert('RGB')
rgb_im.save(name)
c+=1
print(os.path.join(directory, filename))
continue
else:
continue
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us