예제 #1
0
// ---------------------------------------------------------------------------    
    public void Write(Stream stream) {
      using (ZipFile zip = new ZipFile()) {
        CreateOutlineTree example = new CreateOutlineTree();
        byte[] pdf = example.CreatePdf();
        zip.AddEntry(RESULT, pdf);
        zip.AddEntry(RESULTXML, example.CreateXml(pdf));
        zip.Save(stream);             
      }   
    }
예제 #2
0
// ---------------------------------------------------------------------------
        public void Write(Stream stream)
        {
            using (ZipFile zip = new ZipFile()) {
                CreateOutlineTree example = new CreateOutlineTree();
                byte[]            pdf     = example.CreatePdf();
                zip.AddEntry(RESULT, pdf);
                zip.AddEntry(RESULTXML, example.CreateXml(pdf));
                zip.Save(stream);
            }
        }