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