sanpera icon indicating copy to clipboard operation
sanpera copied to clipboard

A better image library for Python

Results 28 sanpera issues
Sort by recently updated
recently updated
newest added

Unclear if I can do this from Python-land or how useful it would be in practice or whether ImageMagick can even guarantee that the buffer protocol would be usable. Also,...

Is there anything interesting in the wand branch btw? I haven't tried to merge it. Anyway I got sanpera working on windows with python 3.4, haven't tested 2.7, but it...

if you try to import `sanpera` from a fresh checkout, without either setting `SANPERA_BUILD=1` or explicitly building with `setup.py`, you get [this](https://github.com/eevee/sanpera/pull/21#issuecomment-45563014): ``` >>> from sanpera.image import Image sanpera/__pycache__/_api_bridge.c:157:31: fatal...

Make an image. Make it not have an alpha channel. Grab a pixel from it. Examine the pixel's alpha channel. You will get garbage. Either forbid access to the alpha...

Probably a built-in for this, but would be nice to have as an example Python filter too. Someone was actually asking about this sooo. (Would this convert the image to...

It's getting there but is clearly incomplete. Things that are missing: - [ ] More operator support for the C accelerator - [ ] Possibly make the op overloading work...

- [ ] There are some TODOs and obvious broken things - [ ] More docs probably - [ ] Extract metadata from the original image on read

A dev has told me e's doing this: ``` def unanimate(im): if len(im) == 1: return im ret = Image() ret.append(im[0]) return ret ``` Yikes.

I don't know what else I had planned here, but they could use a once-over. Also a bunch of tests. A nice bar to reach would be parity with Go's...