From 8c33e4c27265f0a213a3b10145204bb3ea539a47 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Tue, 3 Mar 2020 18:59:10 +0530 Subject: Publish deploy 2020-03-03 18:59 --- .../index 5.html | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 posts/2020-01-14-Converting-between-PIL-NumPy/index 5.html (limited to 'posts/2020-01-14-Converting-between-PIL-NumPy/index 5.html') diff --git a/posts/2020-01-14-Converting-between-PIL-NumPy/index 5.html b/posts/2020-01-14-Converting-between-PIL-NumPy/index 5.html deleted file mode 100644 index b2ba6be..0000000 --- a/posts/2020-01-14-Converting-between-PIL-NumPy/index 5.html +++ /dev/null @@ -1,19 +0,0 @@ -Converting between image and NumPy array | Navan Chauhan
0 minute readCreated on January 14, 2020Last modified on January 18, 2020

Converting between image and NumPy array

import numpy -import PIL - -# Convert PIL Image to NumPy array -img = PIL.Image.open("foo.jpg") -arr = numpy.array(img) - -# Convert array to Image -img = PIL.Image.fromarray(arr) -
- -

Saving an Image

try: - img.save(destination, "JPEG", quality=80, optimize=True, progressive=True) -except IOError: - PIL.ImageFile.MAXBLOCK = img.size[0] * img.size[1] - img.save(destination, "JPEG", quality=80, optimize=True, progressive=True) -
- -
Tagged with:
\ No newline at end of file -- cgit v1.2.3