I am using the following method below to convert a pdf generated from a jasper to PDFA. In the report it is set to horizontal alignment “justified” and JasperPrint is populating correctly. I noticed that it loses alignment when executing the following snippet:
Converter PdfStandardsConverter = new PdfStandardsConverter(InputFolderPath); converter.toPdfA3A(outputfolderpath);
Is there any way to fix keep this alignment?
I tried directly manipulating Jasper information and using JasperFill but it didn't work.