Anthony Margerand
Anthony Margerand
@jbarlow83 Ok thank you I'll look into it and submit a PR asap
@jbarlow83 I started to try implementing the method here : https://github.com/pikepdf/pikepdf/pull/580/files But I dont understand what I'm doing wrong, I have this error message : ``` In file included from...
I found a solution to fetch the options : ```python states = set() try: for key in kid.AP.N: states.update([key]) except UnicodeDecodeError as e: states.update([e.object.decode('iso-8859-1')]) ``` But I have another question,...
@jbarlow83 When I comment out the part that refuses bytes like this https://github.com/pikepdf/pikepdf/blob/main/src/pikepdf/objects.py#L101 I can successfully set the radio button value using the "original" value : ``` values = {}...
@m-holger yes, here is the code simplified a bit : ```c++ static QPDFObjectHandle added_page(QPDF& pdf, QPDFObjectHandle page) { QPDFObjectHandle result = page; if (&page.getQPDF() != &pdf) { // Calling copyForeignObject...
@m-holger I tried and it looks like it partially solves the problem, the program never free memory but after reaching 490 MB of the 512 MB allocated to the container,...
@m-holger The final code looks like this. My container still crash after a while due to memory problem. I will try to find smth with clang sanitizers and valgrind. Although...
Wether I use the main.cpp with the webserver and do some requests to the concat endpoint and then stop the webserver using the added stop endpoint : ```c++ int main()...