From 7f8d36c9a5fea6403e1f5a631cbd4df87b03bbf3 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 7 Feb 2020 19:34:03 +0530 Subject: Publish deploy 2020-02-07 19:34 --- .../index 4.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 posts/2020-01-14-Converting-between-PIL-NumPy/index 4.html (limited to 'posts/2020-01-14-Converting-between-PIL-NumPy/index 4.html') diff --git a/posts/2020-01-14-Converting-between-PIL-NumPy/index 4.html b/posts/2020-01-14-Converting-between-PIL-NumPy/index 4.html new file mode 100644 index 0000000..b2ba6be --- /dev/null +++ b/posts/2020-01-14-Converting-between-PIL-NumPy/index 4.html @@ -0,0 +1,19 @@ +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