Rembrand van Lakwijk

Results 6 comments of Rembrand van Lakwijk

If you don't specify any specific items to download (so *no* `-a`, `-s` or `-f`), it downloads everything including all photos on your timeline, which you can find under the...

This is not a bug. Python itself is built using VS 2008 (=3.3), and any libraries for it should be built using the same compiler.

@CJNE I have a Zappi 2.1 and encountering this issue, I'd be happy to test if you push your dev branch

I tried in the latest master commit 9e578d1c8fa7adf61899ba64a9f26a0032c29c0e and it seems the scaling logic has completely changed (`scale_cuda` is no longer used, in stead it tries `scale_npp`), but it is...

A workaround that works for me for now is to disable hardware processing of the image pipeline altogether: ```patch diff --git a/src/projects/transcoder/transcoder_encoder.cpp b/src/projects/transcoder/transcoder_encoder.cpp index 650a29cf..dd67a51d 100644 --- a/src/projects/transcoder/transcoder_encoder.cpp +++ b/src/projects/transcoder/transcoder_encoder.cpp...

For anyone looking for a workaround, add this before calling `render_pillow()`: ``` import PIL.ImageDraw def textsize(self: PIL.ImageDraw.ImageDraw, *args, **kwargs): x, y, w, h = self.textbbox((0, 0), *args, **kwargs) return w,...