convert pdf file object to .pdf file and then convert into .prn file and return back prn object to mendix

0
public class PdfToPrnConverter extends CustomJavaAction<IMendixObject> { private IMendixObject __PDFFile; private labelprinting.proxies.Label PDFFile;   public PdfToPrnConverter(IContext context, IMendixObject PDFFile) { super(context); this.__PDFFile = PDFFile; }   @java.lang.Override public IMendixObject executeAction() throws Exception { this.PDFFile = this.__PDFFile == null ? null : labelprinting.proxies.Label.initialize(getContext(), __PDFFile);   // BEGIN USER CODE   // END USER CODE }   /** * Returns a string representation of this action * @return a string representation of this action */ @java.lang.Override public java.lang.String toString() { return "PdfToPrnConverter"; }     //please help me
asked
0 answers