예제 #1
0
        public mapItem[] CreatePDF(BLOB inputDocument, string fileName, string fileTypeSettings, string pdfSettings, string securitySettings, BLOB settingsDocument, BLOB xmpDocument)
        {
            GeneratePDFServiceManager sw = new GeneratePDFServiceManager();

            return(sw.CreatePDF(inputDocument, fileName, fileTypeSettings, pdfSettings, securitySettings, settingsDocument, xmpDocument));
            //throw new NotImplementedException();
        }
예제 #2
0
        public mapItem[] CreatePDF(BLOB inputDocument, string fileName, string fileTypeSettings, string pdfSettings, string securitySettings, BLOB settingsDocument, BLOB xmpDocument)
        {
            byte[]         inputContent = inputDocument.binaryData;
            List <mapItem> retvalLst    = Invoker(fileName, inputContent);

            return(retvalLst.ToArray());
        }
예제 #3
0
 public mapItem[] ExportPDF(BLOB inputDocument, string fileName, string formatType, BLOB settingsDocument)
 {
     throw new NotImplementedException();
 }
예제 #4
0
 public mapItem[] HtmlToPDF(string inputURL, string fileTypeSettings, string securitySettings, BLOB settingsDocument, BLOB xmpDocument)
 {
     throw new NotImplementedException();
 }
예제 #5
0
 public bool invoke(BLOB formPdf, out XML xmlOutput)
 {
     throw new NotImplementedException();
 }
예제 #6
0
        public mapItem[] HtmlToPDF(string inputURL, string fileTypeSettings, string securitySettings, BLOB settingsDocument, BLOB xmpDocument)
        {
            WebClient wc = new WebClient();

            byte[] inputContent = wc.DownloadData(inputURL);
            string fileName     = "File.html";

            List <mapItem> retvalLst = Invoker(fileName, inputContent);

            return(retvalLst.ToArray());
        }
예제 #7
0
 public XML invoke(BLOB imageDocument)
 {
     throw new NotImplementedException();
 }