{"id":4627,"date":"2024-01-18T19:42:53","date_gmt":"2024-01-18T19:42:53","guid":{"rendered":"https:\/\/ibex.tech\/python\/?p=4627"},"modified":"2025-05-01T16:29:18","modified_gmt":"2025-05-01T15:29:18","slug":"load-image","status":"publish","type":"post","link":"https:\/\/ibex.tech\/python\/images\/pillow\/load-image","title":{"rendered":"Load image"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">Load image from file<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>from PIL import Image\n\n    image1 = Image.open(\"C:\/MyDirectory\/myimage.jpg\")<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Load image from URL<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>import requests\nimport io\nfrom PIL import Image\n\n    response = requests.get(request_url, auth=auth, timeout=10)    #Timeout in secs\n    if response.status_code == 200:\n        image1 = Image.open(io.BytesIO(response.content))<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Load image from file Load image from URL<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[367],"tags":[],"class_list":["post-4627","post","type-post","status-publish","format-standard","hentry","category-pillow"],"_links":{"self":[{"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/posts\/4627","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/comments?post=4627"}],"version-history":[{"count":3,"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/posts\/4627\/revisions"}],"predecessor-version":[{"id":4925,"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/posts\/4627\/revisions\/4925"}],"wp:attachment":[{"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/media?parent=4627"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/categories?post=4627"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ibex.tech\/python\/wp-json\/wp\/v2\/tags?post=4627"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}