Print PDF in ByteArray form with the Pdf Library SDK

Ask a Question related to Adobe Acrobat SDK, Design and Development.

  1. #1

    Default Print PDF in ByteArray form with the Pdf Library SDK

    Hello,

    we use the Apache FOP for building PDF's with the XSL-FO mechanism.
    The result of the FOP is the "PDF" in bytearray form that we want to print. For this action we would like to use the PDF Library SDK.

    We have found the example "printPdf" where a pdf file will be used for printing.

    While we don't want to store our "PDF" bytearray physically on disk (performance) to get it loaded to the PDFLPrintDoc(doc, &rec) function we are looking for a method to give this bytearray directly to a function of the SDK to get a valid "Library SDK" object that can be used for printing.

    We would appreciate if anyone has any idea or a suggestion concerning this issue.

    Regards
    ALSDK@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Can we print out the contents of a library?
      I have a large object library I use when paginating our newspaper. I need to hand off the paginating duties from time to time to a co-worker, and I'd...
    2. print form
      HI run into a couple of problems. 1. When there isn't anything written in the text field the page errors. 2. I also have check boxes - but if...
    3. where is Request.Form library for ASP?
      I'm trying to run a simple ASP file that reads parameters from a form. The error I get is: error '8002801d' Library not registered. ...
    4. Java form library
      What JAVA libraries can be used to read entry fields from PDF forms on the server? I mean: -to read the PDF fields directly or -to extract...
    5. how to print a form in a single page for each object in the form?
      hi, i have a form and try to print a single page for each of the object in the form? how i could do this? because all the object are printed out...
  3. #2

    Default Re: Print PDF in ByteArray form with the Pdf Library SDK

    You need to write a custom ASFileSys that knows how to read your "bytearray" and then you use that with PDDocOpen()...
    Leonard_Rosenthol@adobeforums.com Guest

  4. #3

    Default Re: Print PDF in ByteArray form with the Pdf Library SDK

    Can you give me a tiny common example for writing the own ASFileSys to see how this works. It must not be neccessarily related to a bytearray.

    This will help a lot!

    Thanks
    ALSDK@adobeforums.com Guest

  5. #4

    Default Re: Print PDF in ByteArray form with the Pdf Library SDK

    There are samples for doing this in the SDK.
    Leonard_Rosenthol@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139