C W

Results 141 comments of C W

A really, *really* horrible workaround hack (that only works for `.png` files) is the following: ``` # PNG File header header = bytes((137, 80, 78, 71, 13, 10, 26, 10))...

The TMC4671 is completely irrelevant here, because the servo controller is implemented in the STM32 MCU. Sure, you could replace the entire circuit with another, but at that point, it's...

Very much this, though I'd prefer a much simpler icon.

I'd strongly favor a flat or at least much more simplistic design over the current icon. I'd actually been meaning to make a change similar to @hieroglyphic's for my personal...

I went in and added intermediates to figure out exactly what's breaking. So it looks like it's barfing on [this line](https://github.com/cbrunet/python-poppler/blob/968df861e57fdfaf17c02b400611cfcfc395e785/src/cpp/image.cpp#L52) Specifically, ```c++ { static_cast(img.height()), static_cast(img.width()), bytes_per_color }, ``` This...

Ok, I tracked down the broken dependency. First, the poppler DLLs need to be placed in the `poppler/cpp/` subdirectory so they're found properly. Additionally, there's a dependency on `libiconv` that's...

![image](https://user-images.githubusercontent.com/1401239/89094001-673dec80-d374-11ea-8279-96bde1db9cdb.png) Ha Ha! I had to manually push some DLLs around (they need to be specified in the appropriate setup.py parameters), but all tests pass except for one that is...

> Will you able to submit a pull request when all problems will be solved? That would be the plan. `os.linesep` Huh, I didn't realize that was a thing. Currently,...

Allright, so currently https://github.com/fake-name/python-poppler/blob/master/setup.py will package everything correctly for windows, provided you manually provide the relevant DLLs. This is a first attempt, I'm *pretty* sure I'm doing at least some...