Hi rama,
Many thank's for your explanation.
Now you have IPdfWriterConfiguration#configure( PdfWriter writer ) interface that you can implement to customize the PdfWriter as you wish.
Here a sample to use it :
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
org.apache.poi.xwpf.converter.pdf.PdfOptions options = new PdfOptions();
options.setConfiguration( new IPdfWriterConfiguration()
{
@Override
public void configure( PdfWriter writer )
{
writer.setPDFXConformance( PdfWriter.PDFA1A );
}
} );
PdfConverter.getInstance().convert( document, out, options );
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Tell me if this idea please you, after that I will update the wiki with this new feature.
Regards Angelo