python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
PIL doesn't detect identical images
I need to determine if an image layer (mainLayer) will be visible within a final image, in which it will be underneath layer, layer2 and layer3. I need to do this without knowing what those other laye...
Andrew
Votes: 0
Answers: 2
PIL doesn't make gifs anymore
I run this code which I took from a PIL tutorial and the output is not a gif with multiple frames. There's just one frame.
from PIL import Image, ImageDraw
images = []
width = 200
center = width // ...
Electromagnetic tea
Votes: 0
Answers: 0
Failing to get image with requests.get
My goal is to compute the average brightness of an image displayed at the given url.
import requests
from PIL import ImageStat, UnidentifiedImageError
from PIL import Image as ImPIL
def brightness(im...
tim_76
Votes: 0
Answers: 1
Adding a text overlay at angle with PIL function
Starting with this
The desired effect would be any of the scenarios depicted below:
However, I can't get past this error: images do not match from the image.paste call
I'm sure there are other ways ...
beautysleep
Votes: 0
Answers: 1