• Joined on 2022-04-08
tpurves commented on issue josch/img2pdf#127 2022-04-13 21:37:24 +00:00
Memory 'leak'

@Gistix, @tpurves until this is fixed in pikepdf, as a workaround, you can pass engine=img2pdf.Engine.internal to convert() so that pikepdf isn't used as the rendering engine.

I was…

tpurves commented on issue josch/img2pdf#127 2022-04-13 13:15:57 +00:00
Memory 'leak'

It's pretty clear that the allocation is not comming from the standard python heap allocator. As there is no significant increate in the (python runtime manged) heap usage. So this means something…

tpurves commented on issue josch/img2pdf#127 2022-04-12 14:30:34 +00:00
Memory 'leak'

Well I don't beleive there is a memory "leak", but something with the way that python or the libraries pulls memory from the OS. To the point that we know once a block of memory is allocated to…

tpurves commented on issue josch/img2pdf#127 2022-04-08 20:25:47 +00:00
Memory 'leak'

Thanks for the awesome library. I just started playing around with it to convert a propritary TIFF Wrapper to PDF. And I am also seeing the memory issue.

One solution of course is to run the…