{"id":43,"date":"2026-02-08T11:32:04","date_gmt":"2026-02-08T03:32:04","guid":{"rendered":"https:\/\/openpyxl.com\/blog\/?p=43"},"modified":"2026-01-16T07:24:26","modified_gmt":"2026-01-16T07:24:26","slug":"how-to-rotate-images-using-openpyxl","status":"publish","type":"post","link":"https:\/\/openpyxl.com\/blog\/how-to-rotate-images-using-openpyxl.html","title":{"rendered":"How To Rotate Images Using OpenPyXL?"},"content":{"rendered":"<h2>Method<\/h2>\n<p style=\"margin: 0in; font-family: \u5fae\u8f6f\u96c5\u9ed1; font-size: 14.0pt;\">rotated_image=img.rotate(45, expand=True)<\/p>\n<h2>Sample Code<\/h2>\n\n\n<pre class=\"wp-block-code\"><code>#Rotation Transformation\n\nfrom openpyxl import Workbook\nfrom openpyxl.drawing.image import Image as xlImage\nfrom PIL import Image as pilImage\n\n#Create a workbook\nwb=Workbook()\n#Get the active worksheet\nws=wb.active\n\n# Open the original image file\nimg=pilImage.open('pic.jpg')\n\n#Apply a rotation transformation to the image\nrotated_image=img.rotate(45, expand=True)\n\n# Save the transformed image as a temporary file\npath='image2.jpg'\nrotated_image.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('image04.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=\"723\" src=\"https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/25.png\" alt=\"\" class=\"wp-image-299\" srcset=\"https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/25.png 872w, https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/25-300x249.png 300w, https:\/\/openpyxl.com\/blog\/wp-content\/uploads\/2026\/02\/25-768x637.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-43","post","type-post","status-publish","format-standard","hentry","category-openpyxl-picture"],"_links":{"self":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/43","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=43"}],"version-history":[{"count":2,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/43\/revisions"}],"predecessor-version":[{"id":300,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/posts\/43\/revisions\/300"}],"wp:attachment":[{"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/media?parent=43"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/categories?post=43"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/openpyxl.com\/blog\/wp-json\/wp\/v2\/tags?post=43"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}