{"id":4165,"date":"2024-02-13T21:23:16","date_gmt":"2024-02-13T13:23:16","guid":{"rendered":"http:\/\/cnliutz.ipyingshe.net\/?p=4165"},"modified":"2024-02-13T21:23:17","modified_gmt":"2024-02-13T13:23:17","slug":"python-pillow%e7%94%bb%e5%9b%be","status":"publish","type":"post","link":"http:\/\/g1n29wqq.ipyingshe.net:5347\/?p=4165","title":{"rendered":"python pillow\u753b\u56fe"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>from PIL import Image, ImageDraw\r\n\r\ndef draw_eclipse(draw, x, y, width, height, fill_color):\r\n    draw.ellipse(&#91;x, y, x + width, y + height], fill=fill_color)\r\n\r\ndef draw_rectangle(draw, x, y, width, height, fill_color):\r\n    draw.rectangle(&#91;x, y, x + width, y + height], fill=fill_color)\r\n\r\ndef draw_triangle(draw, x1, y1, x2, y2, x3, y3, fill_color):\r\n    draw.polygon(&#91;(x1, y1), (x2, y2), (x3, y3)], fill=fill_color)\r\n\r\nfilename = input(\"Enter the file name: \")\r\nextension = filename&#91;-3:]\r\nname = filename&#91;:len(filename)-4]\r\n\r\nif extension.lower() != \"png\":\r\n    extension = \"png\"\r\n\r\nimage = Image.new(\"RGBA\", (500, 500), (0, 0, 0, 0))\r\ndraw = ImageDraw.Draw(image)\r\n\r\ndraw_eclipse(draw, 50, 50, 200, 200, (255, 0, 0))\r\ndraw_rectangle(draw, 250, 50, 100, 100, (0, 255, 0))\r\ndraw_triangle(draw, 50, 50, 300, 100, 150, 200, (0, 0, 255))\r\n\r\nimage.save(f\"{name}.{extension}\")<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"500\" height=\"500\" src=\"http:\/\/cnliutz.ipyingshe.net\/wp-content\/uploads\/2024\/02\/triangle.png\" alt=\"\" class=\"wp-image-4166\" srcset=\"http:\/\/g1n29wqq.ipyingshe.net:5347\/wp-content\/uploads\/2024\/02\/triangle.png 500w, http:\/\/g1n29wqq.ipyingshe.net:5347\/wp-content\/uploads\/2024\/02\/triangle-300x300.png 300w, http:\/\/g1n29wqq.ipyingshe.net:5347\/wp-content\/uploads\/2024\/02\/triangle-150x150.png 150w, http:\/\/g1n29wqq.ipyingshe.net:5347\/wp-content\/uploads\/2024\/02\/triangle-240x240.png 240w\" sizes=\"auto, (max-width: 500px) 100vw, 500px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[10],"tags":[],"class_list":["post-4165","post","type-post","status-publish","format-standard","hentry","category-python"],"_links":{"self":[{"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/4165","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4165"}],"version-history":[{"count":1,"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/4165\/revisions"}],"predecessor-version":[{"id":4167,"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=\/wp\/v2\/posts\/4165\/revisions\/4167"}],"wp:attachment":[{"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4165"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4165"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/g1n29wqq.ipyingshe.net:5347\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4165"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}