-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
September improvements by @backslash47 #143
Conversation
Hi @backslash47 The symbol Thanks, |
…r images. This should allow percentage values in max-height and max-width for images. Fix suggested in #143 Thanks @backslash47
Hello, I did not have much time to work it into PDFBOX repo. If you can propose it to pdfbox maintainers, it would be great. |
@@ -169,11 +179,12 @@ public PdfBoxRenderer(float dotsPerPoint, int dotsPerPixel, boolean useSubsets, | |||
PdfBoxRenderer(BaseDocument doc, UnicodeImplementation unicode, | |||
HttpStreamFactory httpStreamFactory, | |||
OutputStream os, FSUriResolver resolver, FSCache cache, SVGDrawer svgImpl, | |||
PageDimensions pageSize, float pdfVersion, String replacementText, boolean testMode, FSObjectDrawerFactory objectDrawerFactory) { | |||
PageDimensions pageSize, float pdfVersion, String pdfAConformance, byte[] colorProfile, String replacementText, boolean testMode, FSObjectDrawerFactory objectDrawerFactory) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if it is a good idea to pass the pdfAConformance as a string.
They actually barley change over the years.
We're now waiting on PDFBOX-3992 for the show text with positioning operator (TJ). |
cherry-picked commit from pr #143: bold and italic emulation
Cherry-pick from PR #143: pdf/a support
Includes support for min/max height/width properties and test cases. Limitations: + Not implemented for replaced elements such as images/MathML, etc. + Not taken into account during the table layout algorithm.
Should be finished with this one. |
Thanks for the awesome work @backslash47