{"id":46,"date":"2026-02-09T17:38:13","date_gmt":"2026-02-09T09:38:13","guid":{"rendered":"https:\/\/openpyxl.com\/blog\/?p=46"},"modified":"2026-01-16T07:30:34","modified_gmt":"2026-01-16T07:30:34","slug":"how-to-get-blur-effect-of-given-images-using-openpyxl","status":"publish","type":"post","link":"https:\/\/openpyxl.com\/blog\/how-to-get-blur-effect-of-given-images-using-openpyxl.html","title":{"rendered":"How To Get Blur Effect of Given Images Using OpenPyXL?"},"content":{"rendered":"<h2>Method<\/h2>\n<p>img2=img.filter(ImageFilter.GaussianBlur)\u00a0\u00a0\u00a0 #Apply Gaussian blur<\/p>\n<p>#img2=img.filter(ImageFilter.BLUR)\u00a0\u00a0\u00a0 #Apply normal blur<\/p>\n<h2>Sample Code<\/h2>\n\n\n<pre class=\"wp-block-code\"><code>#Blur Effect\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.GaussianBlur)    #Apply Gaussian blur\n#img2=img.filter(ImageFilter.BLUR)    #Apply normal blur\n\n# Save the blurred 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('image07.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\/28.png\" alt=\"Get Blur Effect of Given Images Using OpenPyXL\" class=\"wp-image-308\" srcset=\"https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/28.png 872w, https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/28-300x245.png 300w, https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/28-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-46","post","type-post","status-publish","format-standard","hentry","category-openpyxl-picture"],"_links":{"self":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/46","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=46"}],"version-history":[{"count":2,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/46\/revisions"}],"predecessor-version":[{"id":309,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/46\/revisions\/309"}],"wp:attachment":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/media?parent=46"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/categories?post=46"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/tags?post=46"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}