Results 115 comments of wiredfool

There's a potential fix for this in Pillow master now. I'd appreciate reports of success/failure.

Looks like the manylinux wheel issue was closed half an hour ago.

I think that we're parsing the colormap to spec. From the tiff spec: > ColorMap Tag = 320 (140.H) Type = SHORT N = 3 * (2**BitsPerSample) > This field...

The palette in the file is little endian 16bit, so in hex in the file it's 0x00 00 00 00 01 00 01 00 02 00 ... This converts to...

Pillow multiplies the palette we're writing by 256 on save, so we're using the full space. It might make sense to use an LSB palette if all of the elements...

I was somewhat worried that would be the compiler answer. @cgohlke, I assume that you've got a MSDN or academic license to VS? It appears that the VS Expresses can...

That's a very helpful thread. When I first looked at the SDKs, it looked like they required VS, but now I see that they do include the compilers. I'll give...

I've made some progress following these directions. So far, I've build for 2.7/x64, just to make sure that I'm getting the build process working end to end for one of...