Exemplo n.º 1
0
 public DocumentContent ConvertToFormatLabeled(DocumentContent content, string fileName, string extReq, string label)
 {
     try
     {
         logger.DebugFormat("ConvertToFormat: {0} ({1})", fileName, extReq);
         PrintRedirected pr = new PrintRedirected();
         return(new DocumentContent(pr.ConvertToFormatLabeled(content.Blob, fileName, extReq, label)));
     }
     catch (Exception e)
     {
         logger.Error(e);
         throw;
     }
 }
Exemplo n.º 2
0
 public DocumentContent ConvertToFormat(DocumentContent content, string fileName, string extReq, out DocumentContent wmfSigns)
 {
     try
     {
         logger.DebugFormat("ConvertToFormat: {0} ({1})", fileName, extReq);
         PrintRedirected pr   = new PrintRedirected();
         byte[]          sign = null;
         bool            isEncripted;
         var             result = new DocumentContent(pr.ToRasterFormat(content.Blob, fileName, extReq, out sign, out isEncripted));
         wmfSigns = new DocumentContent(sign);
         return(result);
     }
     catch (Exception e)
     {
         logger.Error(e);
         throw;
     }
 }
Exemplo n.º 3
0
        private void bgw_DoWork(object sender, DoWorkEventArgs e)
        {
#if ws
            StampaConformeSvc.BiblosDSConv convVersion = new StampaConformeSvc.BiblosDSConv();
            Console.WriteLine(convVersion.GetVersion());
#endif
            PrintRedirected pr  = new PrintRedirected();
            DirectoryInfo   dir = new DirectoryInfo(@"C:\Lavori\Docs\BiblosDs\TestStampaConforme\");
            string          fileName;
            foreach (var item in dir.GetFiles())
            {
                Console.WriteLine("Elab:\t" + item.Name);
                try
                {
                    if (Path.GetExtension(item.Name).Length > 0 && String.Compare(Path.GetExtension(item.Name).Substring(1).Substring(0, 2), "P7", true) != 0)
                    {
                        fileName = Path.GetExtension(item.Name).Substring(1);
                    }
                    else
                    {
                        fileName = item.Name;
                    }
                    byte[] FileBlob = File.ReadAllBytes(item.FullName);
                    string label    = "<Label>"
                                      + "  <Text>Protocollo 123 (pagina) di (pagine)</Text><Footer>Protocollo 123 (pagina) di (pagine)</Footer>"
                                      + "  <Font Face=\"Arial\" Size=\"18\" Style=\"Bold,Italic\" />"
                                      + "</Label>";
                    label = string.Format("<Label><Text>BiblosTester.GetDocumentHeadedEx - {0}</Text><Font Face='Arial' Size='12' Style='Bold' /></Label>", DateTime.Now.ToString());
                    //+ "  <Scale scalePercent=\"96\" />"
                    string Waternamrk = "<Watermark>"
                                        + "  <Text>Copia#per la pubblicazione</Text>"
                                        + "  <Font Color=\"58,95,205\" Face=\"Arial\" Size=\"50\" Style=\"Bold,Italic\" />"
                                        + "  <WatermarkConfig WatermarkRotation=\"45\" FillOpacity=\"30\" />"
                                        + "  <Scale scalePercent=\"80\" />"
                                        + "</Watermark>";
                    byte[] result = null;
                    var    cfg    = new BoxConfig
                    {
                        BoxLine = new[]
                        {
                            new BoxLineConfig {
                                Message = "Prova 1"
                            },
                            new BoxLineConfig {
                                Message = "Prova 2"
                            },
                            new BoxLineConfig {
                                Message = "Prova 3"
                            },
                        },
                    };
#if Ws
                    StampaConformeSvc.BiblosDSConv conv = new StampaConformeSvc.BiblosDSConv();
                    //conv.Url = "http://srvbiblos/StampaConforme/BiblosDSConv.asmx";// "http://win2k8sc.rmvsw.local/StampaConforme2010/BiblosDSConv.asmx";//"http://localhost/StampaConforme/BiblosDSConv.asmx"; //
                    //Console.Write(conv.Test(item.Extension));
                    //var doc = conv.ToRasterFormat(new StampaConformeSvc.stDoc { Blob = Convert.ToBase64String(FileBlob), FileExtension = fileName }, "PDF");
                    //var doc = conv.ToRasterFormatExParameters(new StampaConformeSvc.stDoc { Blob = Convert.ToBase64String(FileBlob), FileExtension = fileName }, "PDF", label, new StampaConformeSvc.stParameter[]{ new StampaConformeSvc.stParameter{ Name = StampaConformeSvc.stParameterOption.AttachMode, Value = "3" }});
                    var doc = conv.ToRasterFormatEx(new StampaConformeSvc.stDoc {
                        Blob = Convert.ToBase64String(FileBlob), FileExtension = fileName
                    }, "PDF", label);
                    //var doc = conv.ToRasterFormatWatermarked(new StampaConformeSvc.stDoc { Blob = Convert.ToBase64String(FileBlob), FileExtension = fileName }, label,Waternamrk);
                    //var doc = conv.ToRasterFormatRgWatermarked(new StampaConformeSvc.stDoc { Blob = Convert.ToBase64String(FileBlob), FileExtension = fileName }, "PDF", label, Waternamrk, "", "", 0, 0, 0, 0, 0, 0, 0, 0);
                    result = Convert.FromBase64String(doc.Blob);
#else
                    // label = "";
                    byte[] res;
                    //result = pr.ConvertToFormatLabeledWithForm(FileBlob, fileName, "PDF", label, cfg);
                    result = pr.ConvertToFormatLabeled(FileBlob, fileName, "PDF", label, BiblosDS.Library.Common.Enums.AttachConversionMode.Default);
                    //PdfLabeler ePdf = new PdfLabeler();
                    //var resSecure = ePdf.RightPdf(result,
                    //    "xxx",
                    //    "xx",
                    //    0,
                    //    0,
                    //    0,
                    //    0,
                    //    0,
                    //    0,
                    //    0,
                    //    0);

                    /*
                     * PdfLabeler ePdf = new PdfLabeler();
                     * result = ePdf.RightPdf(result,
                     * "",
                     * "",
                     * 0,
                     * 0,
                     * 0,
                     * 0,
                     * 0,
                     * 0,
                     * 0,
                     * 0);*/
                    //result = pr.ToRasterFormat(FileBlob, fileName, "PDF", out res);
                    //result = pr.EtichettaWatermark(result, Waternamrk);
#endif

                    File.WriteAllBytes(Path.Combine(@"C:\Lavori\Docs\BiblosDs", item.Name + ".PDF"), result);
                }
                catch (Exception exx)
                {
                    Console.WriteLine(exx.Message);
                }
            }
            Program.tm.Dispose();
            //Program.sem.Release();
        }