Closed vsrboth closed 8 years ago
Hi @vsrboth ,
Thank you for reporting the issue.
Could you please explain what you're experiencing?
I downloaded the file to test and CombinePDF.load
loaded the file properly.
The warnings are due to the fact that some features aren't fully supported by the library, so the library is warning about potential data loss... but I didn't notice any data loss, did you?
Best regards, Bo.
Hi @boazsegev ,
thank you so much for your prompt assistance (so much appreciate [bow]).
Problem is it takes me forever to load the pdf file. Probably you can find another Pdf sample for testing.
Note: I am using Mac - El Captian.
Hi @vsrboth ,
Are you experiencing long load times when using the terminal?
When using the Terminal, Ruby will print back the value of the last statement, which can take a very long time for PDF objects.
PDF objects are stored in a recursive Hash (some hash keys point to their parents). Your file will have a Hash with more then 500 Kb of data.
This will take irb
a long time to process for printing.
You can avoid this slow "print" processing by giving irb
a smaller object to print.
i.e. the following line will print out the PDF Hash, which will take a long time:
CombinePDF.load "test.pdf"
So, you can change it to the following line, which prints nil
, which is fast:
pdf = CombinePDF.load "test.pdf"; nil
Then you can use the data in the pdf
variable to test out any actions you need. i.e.
pdf.save "out.pdf"
Please tell me if this helps.
that's a magic ;) thank you so much @boazsegev
You're Welcome :)
hi @boazsegev
It seems the library is having an issue loading pdf file that is creating using Adobe LiveCycle (containing xml file).
Link to download sample pdf
here is the error I got