pillow

    0熱度

    2回答

    晚安。 今天我正在嘗試學習Python中的PIL/Pillow。 我用下面的代碼: import PIL import PIL.Image as Image import PIL.ImageDraw as ImageDraw import PIL.ImageFont as ImageFont font = ImageFont.truetype("C:\Windows\Fonts\Verd

    1熱度

    1回答

    我想把一個nxnx3矩陣變成一個RGB圖像,其中矩陣中的每個空間是[R,G,B]。我認爲這很容易,但我得到一個奇怪的錯誤。 我有這樣的形象:http://www.cs.brandeis.edu//~arya/test2.bmp 這只是一個10像素由10位bixel跨越一個紅色的斜線,你可以看到。 這裏是我的Python代碼: import numpy as np from PIL import

    3熱度

    2回答

    from PIL import Image from PIL import ImageDraw from io import BytesIO from urllib.request import urlopen url = "https://i.ytimg.com/vi/W4qijIdAPZA/maxresdefault.jpg" file = BytesIO(urlopen(url)

    1熱度

    1回答

    我正在黑色條上繪製一些文本,然後使用PIL將結果粘貼到基本圖像的頂部。一個關鍵是將文本位置完美地放在黑色條的中心。 我通過下面的代碼迎合的是: from PIL import Image, ImageFont, ImageDraw background = Image.new('RGB', (strip_width, strip_height)) #creating the black str

    0熱度

    1回答

    我嘗試使用下面的代碼,以使縮略圖: import Image # Skipping creation of file-like object 'f' im = Image.open(f) im.thumbnail((256, im.height)) im.save(f, 'WebP') f.flush() 的docs說「這個方法修改圖像包含的本身,沒有大的縮略圖版本比給定的大小。「

    2熱度

    1回答

    當前我正在嘗試檢測小圖片(大約360 * 360像素)內的紅色像素。 圖像具有廣泛的紅色值,這就是爲什麼我不能遍歷所有像素並檢查某個rgb值的原因。 分析這樣的圖片以獲得被人類感知爲紅色的像素百分比的方法是什麼? 在此先感謝。

    4熱度

    1回答

    我使用以下兩種方法來計算一個樣本串的渲染寬度用於一組字體類型和大小: font = ImageFont.truetype("/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf", 14) sample = "Lorem ipsum dolor sit amet, partem periculis an duo, eum lorem paulo an,

    2熱度

    1回答

    我可以使用以下代碼來繪製一個黑色條帶(或矩形)基礎圖像之上: base_width, base_height = img.size background = Image.new('RGBA', (base_width, base_height/3),(0,0,0,146)) offset = (0,base_height/2) img.paste(background,offset,mask

    0熱度

    2回答

    的Python 3.6安裝枕頭 我新的Python和Django的,我試圖約枕頭但是當我通過PIP安裝枕頭從Python的命令外殼安裝枕頭,我得到的消息: Exception: Traceback (most recent call last): File "c:\program files\python36\lib\site-packages\pip\compat\__init__.

    0熱度

    1回答

    這段代碼圈: #!/usr/bin/env python # -*- coding: utf-8 -*- from PIL import Image, ImageDraw imo=Image.new("RGB", (85, 64), (204, 204, 204)) pos=(10, 64) r=8 draw=ImageDraw.Draw(imo) draw.chord((pos