{"id":47,"date":"2026-02-10T11:35:27","date_gmt":"2026-02-10T03:35:27","guid":{"rendered":"https:\/\/openpyxl.com\/blog\/?p=47"},"modified":"2026-01-16T07:32:41","modified_gmt":"2026-01-16T07:32:41","slug":"how-to-implement-edge-processing-of-given-images-using-openpyxl","status":"publish","type":"post","link":"https:\/\/openpyxl.com\/blog\/how-to-implement-edge-processing-of-given-images-using-openpyxl.html","title":{"rendered":"How To Implement Edge Processing of Given Images Using OpenPyXL?"},"content":{"rendered":"<h2>Method<\/h2>\n<p>img2=img.filter(ImageFilter.EDGE_ENHANCE)\u00a0\u00a0\u00a0 #Edge enhancement<\/p>\n<p>#img2=img.filter(ImageFilter.FIND_EDGES)\u00a0\u00a0\u00a0 #Edge detection<\/p>\n<h2>Sample Code<\/h2>\n\n\n<pre class=\"wp-block-code\"><code>#Edge Processing\n\nfrom openpyxl import Workbook\nfrom openpyxl.drawing.image import Image as xlImage\nfrom PIL import Image,ImageFilter\n\n#Create a workbook\nwb=Workbook()\n#Get the active worksheet\nws=wb.active\n\n# Open the original image file\nimg=Image.open('pic.jpg')\nimg2=img.filter(ImageFilter.EDGE_ENHANCE)    #Edge enhancement\n#img2=img.filter(ImageFilter.FIND_EDGES)    #Edge detection\n\n# Save the processed image as a temporary file\npath='image.jpg'\nimg2.save(path)\n\n# Add the image to the worksheet\nimg=xlImage(path)\nws.add_image(img, 'A1')\n\n# Save the workbook\nwb.save('image08.xlsx')\n\n# Delete the temporary file\nimport os\nos.remove(path)<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"872\" height=\"713\" src=\"https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/29.png\" alt=\"Implement Edge Processing of Given Images Using OpenPyXL\" class=\"wp-image-311\" srcset=\"https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/29.png 872w, https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/29-300x245.png 300w, https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/29-768x628.png 768w\" sizes=\"auto, (max-width: 706px) 89vw, (max-width: 767px) 82vw, 740px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>OpenPyXL<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[],"class_list":["post-47","post","type-post","status-publish","format-standard","hentry","category-openpyxl-picture"],"_links":{"self":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/47","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/comments?post=47"}],"version-history":[{"count":2,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/47\/revisions"}],"predecessor-version":[{"id":312,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/47\/revisions\/312"}],"wp:attachment":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/media?parent=47"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/categories?post=47"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/tags?post=47"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}