Replies: 2 comments 1 reply
-
I don't know if it is a big win. Removing the classes from xml and html would make the jar about 100kb smaller. And probably if we split the jar, the parser code would only be one of the aspects, that can be separated. |
Beta Was this translation helpful? Give feedback.
1 reply
-
As this discussion is quite old, an there is not many interest on it, I think there wont be further modularization in near future. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
Wondering whether the main module
openpdf
can be (in principle) broken up into smaller modules (jar files) for my more narrow use case..In my application, there's no need for a parser (I'm imagining), since I directly invoke the library's API methods to create the PDF file. So, naively skimming the code, it seems the packages
com.lowagie.text.xml.*
,com.lowagie.text.html.*
might be unneeded in my use case. I'm not even sure these packages contribute much to the overall byte size of application code, but any way to shave some bytes (2MB) would be very cool. Am I reading the situation right? Or should I not even try?~ Babak
Beta Was this translation helpful? Give feedback.
All reactions