Add PDF to AFP Output - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T02:32:09Zhttp://stackoverflow.com/feeds/question/628078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/628078/add-pdf-to-afp-output0Add PDF to AFP OutputMike K.2009-03-09T21:15:19Z2009-08-13T19:48:45Z
<p>We're trying to take a PDF file created in a web application and dynamically insert it into an AFP datastream on an IBM iSeries. Does anyone know if this is possible?</p>
http://stackoverflow.com/questions/628078/add-pdf-to-afp-output/629028#6290281Answer by Mike Wills for Add PDF to AFP OutputMike Wills2009-03-10T05:32:25Z2009-03-10T05:32:25Z<p>A better place to ask this question might be on <a href="http://lists.midrange.com/listinfo/midrange-l" rel="nofollow">Midrange.com</a>. There are many people that I am sure can help you with that.</p>
http://stackoverflow.com/questions/628078/add-pdf-to-afp-output/747339#7473390Answer by R Ubben for Add PDF to AFP OutputR Ubben2009-04-14T12:38:16Z2009-04-14T12:38:16Z<p>The short answer is not easily.</p>
<p>There would be two ways to do that. The easiest way would be to convert the pdf to a series of tiff images and rewrite the afp stream to include them as IOCA images. If they are two-color fax G4 compressed, they can be converted to IOCA group 10 without too much trouble.</p>
<p>The second way would be to convert the pdf to AFP (the two formats have a lot of similarities) and rewrite the AFP stream to include it. If the PDF doesn't have embedded fonts then you shouldn't have too much trouble mapping the fonts to the AFP ones.</p>
<p>It may not look quite right at first. AFP allows you to position elements much more accurately than PDF does.</p>
http://stackoverflow.com/questions/628078/add-pdf-to-afp-output/1274182#12741820Answer by Dave Comeau for Add PDF to AFP OutputDave Comeau2009-08-13T19:48:45Z2009-08-13T19:48:45Z<p>I agree with the previous answer that it's not an "easy" task...</p>
<p>But if you are familiar with AFP structure (or at least willing to learn the spec) you can technically add single page PDF objects into AFP using AFP's Object Containers.</p>
<p>But the downside is that you'll need a pretty modern AFP print environment to actually handle AFP that contains PDF object containers. Most printers I've dealt with won't handle it.</p>
<p>So converting the PDF to AFP and merging it into the parent document would be best. Applications like Xenos.com's d2e Vision will do a nice job of this.</p>