Flatten PDF with Attachments

Hi,
I,
1. render a xdp in browser (via servlet)
2. fill out the form, attach some files
3. submit the form as PDF (via servlet)
4. launch a process that flattens the PDF file
the flattened PDF doesn't include attachments no more, it was lost durning the Output/transform Qpac. (if I don't apply the flattening, I am able to see the attachments)
How do I keep attachments in flattened pdf?
Thanks in advance.

You can achieve this with help of assembler service (http://help.adobe.com/en_US/livecycle/10.0/Services/WS92d06802c76abadb712193f912dbeb3c6db- 8000.html)
This link will help you in creating a DDX to do the same (http://help.adobe.com/en_US/livecycle/10.0/ddxRef.pdf)
Jump to Section 'Attaching files to a PDF document'. Hope this helps.
These documentation is from ES3 version.
Similar documentation is present for other versions of LiveCycle too.
Regards,
Varun Nohria

Similar Messages

  • Flattening PDF with transparency becomes large PDF

    Hi,
    I have an issue with a PDF file created from Photoshop. The PDF file contains transparency settings.
    When I create the PDF from Photoshop with a setting that flattens transparency (such as PDFX1a2001), the resulting PDF is flat and fairly small in size.
    If I create the PDF from Photoshop with a setting that preserves transparency (such as High Quality Print), the file is also small in size. However, if I use this same PDF and flatten it, by printing it once more as a PDF with a setting such as PDFX1a2001 (PDF to PDF), the file becomes enormous. And Acrobat even rasterises embedded fonts which I don't understand!
    I believe the problem has nothing to do with Photoshop, but Acrobat is the culprit (the same thing happened with Illustrator instead of Photoshop).
    Has anybody come across a similar issue, and/or what do you suggest I try as a workaround?
    Thanks.
    PS: My initial goal was to use the PDF with the transparency as a watermark into a second PDF and then flatten the resulting PDF into a new PDF. This last, flat, PDF becomes very large in size and even has fonts rasterised.
    But the problem can be isolated to the operation of flattening the PDF containing transparency, as described above.
    Update:
    The problem described occurred with Acrobat Distiller 9.0.0.
    I tried using Acrobat Distiller 8.1.0, and that worked! The watermark with transparency got embedded in the pdf, and the resulting pdf had a standard file size. I do see a very thin border around the watermark however which appears and disappears depending on the zoom.
    1- Any solution on how to fix this problem for Acrobat Distiller 9.0.0?
    2- Is the thin border appearing around the watermark (with Distiller 8) an artifact or will it be seen on print?

    hi, I've just come across this looking for an answer to a related issue. You may have already found your answers, 1 year later, but in case you're still curious:
    the small hairlines around the flattened watermark are what Adobe calls "atomic regions." For transparent type, or any vector shape with a transparency effect (e.g. drop shadow) to be flattened into the artwork behind it, it needs to be rastered into a bitmap to burn it into a single object. The atomic regions are small slices of image where that vector-bitmap rastering happened. In virtually all cases you will not see that in print. (If you zoom in and it gets larger, then you may. It typically stays the same size or disappears.)
    There's a host of settings in both versions of Acrobat (more in 9) wherein you can determine how much "extra" information gets carried into your file. Even after flattening within Acrobat, you can still optimize the file size by tossing all of that extra info. (go to Help menu and enter Reduce File Size)
    What I suspect is happening is, when outputting a flattened X-1a from Photoshop, it's taking care of rastering the watermark into the image, creating a flattened file. (this is assuming you're not applying the watermark in Acrobat.) This is a single bitmap image.
    If you're flattening say, an X-4 (unflattened) PDF with live transparency, or burning in an Acrobat watermark, Acrobat is creating more than a couple atomic regions (likely very many). These are several bitmap images, probably along with some other vector type—even if the glyphs stay vector (no transparency affecting them) they are no longer type, but vector objects, if any other part of the copy was rasterized. Acrobat may even be doing you the favor of keeping the text it converted in an invisible layer above the image. (It does this with OCR conversions.)
    Text is text, with font attributes applied, and takes up very little room in a document. Text partially converted to bitmaps and vectors can no longer be read in the file as text (exporting, assistive devices, etc.). If, as I suspect, Acrobat is rastering some of the type, it's preserving the text in the file so it can still be read and exported. (This is just a hypothesis on my part.)
    All of the various little images in the atomic regions, partially rastered type, plus any overhead garbage Acrobat saw fit to add to your file can increase the file size drastically.
    My advice? Either create a PDF and leave the Acrobat watermark alone (there are reasons), or if you have to flatten it—because you're submitting a PDF/X-1a-compliant file for press that needs to have a transparent watermark—flatten the image in Photoshop, then export your PDF.

  • Problem with assembling flattened PDFs with XFA docs

    I have a flattened PDF (legacy) doc that I am sending into a livecycle process to merge with an XFA doc that I am creating on the server. Assembler will not allow me to assemble the docs in the following order:
    1. flattened PDF
    2. XFA doc
    I CAN do the reverse order just fine. Problem is order DOES matter and I need the XFA last.
    Any thoughts on how I can reach that end result? I was thinking of doing the merge in the wrong order and then maybe reordering the pages, but don't know how to do that either.
    Any help would be VERY appreciated!

    Try specifying the xfa doc as the base document, i.e.:
    <PDF result="out">
    <PDF source="flatPDF"/>
    <PDF source="xfa" baseDocument="true"/>
    </PDF>

  • Assemble PDF with attachments

    Hi All,<br /><br />I am planning to assemble a PDF document with attachments. Or as I see my requirement is to create a PDF and attach various files to it. The PDF would then be sent as an attachment to an email.<br /><br />The user should be able to open the emailed PDF and save the image/application attachments seperately.<br /><br />To achieve this I had generated the sample DDX and tried it in a process, but no luck.<br /><br />All the source objects are avaialble int he assembler map object of documents with the correct key value.<br /><br /><?xml version="1.0" encoding="UTF-8"?><br /><DDX xmlns="http://ns.adobe.com/DDX/1.0/"><br /><PDF result="pdf2image_res.pdf"><br /><PDF source="pdf2image_res.pdf"><br /> <FileAttachments source="image-1.jpg" nameKey="image-1.jpg"><br />  <File filename="image-1.jpg"/><br /> </FileAttachments><br /> <FileAttachments source="image-2.jpg" nameKey="image-2.jpg"><br />  <File filename="image-2.jpg"/><br /> </FileAttachments><br /></PDF><br /></PDF><br /></DDX><br /><br />Then I extract the generated pdf in a document like '/process_data/docAssemblerMap[@id='pdf2image_res.pdf']'<br /><br />The generated PDF does not have the attachments embedded in it.<br /><br />Any thoughts/help would be greatly appreciated.

    I tried it with your ddx (with minor modification)and it worked fine.
    I would try to use the Record and Play back to make sure all the components of your map are set properly.
    Jasmin

  • Portfolio to single pdf with attachments

    I am trying to combine a portfolio pdf (that contains 1500 pages of emails plus attachments) into ONE single pdf in chronological order of the emails.  I can sort it in chronological order in the portfolio.  However when I "combine files into a single PDF" it will only sort the files in alpha order according to the file name.  HELP!

    Open each Portfolio attached file.  Save each so that you have individual files. Use Acrobat to combine the files. Use the Pages panel to manually reposition pages as desired or hire a developer to create a script to do this.
    Basically you "cann't get there from here" with your Portfolio. Portfolio PDFs are PDFs with a special UI that uses Flash. All the other files are simply attached.
    Be well...

  • Email Conversions to PDF With Attachments

    It has been a while since I checked on this, but has Adobe found a way to fix the email with attachment conversion "problem"?  What I want and need is when I convert an email from Outlook to an Adobe PDF, I want the attachments to convert as well.  So the finished product would look like email on a page, then the pages behind that email are whatever was attached to the email.
    Yes, I know that when it converts the attachments are connected to the PDF via the Paperclip on the bottom left side of the page.  This would be incredibly useful in the legal field.
    I'm using Adobe Acrobat Pro.
    Any help would be greatly appreciated!

    let me rephrase that.. if I send to one email it keeps the security. but when I
    send to more than one person it doesn't keep the security.

  • PDFs with attachments imbedded

    A really great feature of imbedding an attachment inside a pdf is the ease with which a user can switch between the attachment and the pdf. On the Android reader the attachments are available for review but the hyperlink that Adobe creates through the paperclip icon on the pdf does not work.
    Does this feature work in any version of reader for iOS?

    Thanks for looking into this. One more suggestion prompted by this other topic that came up today: http://forums.adobe.com/thread/1117825
    I've requested before that the buttonImportIcon JavaScript method be supported so that a user can select an image from the camera roll (as a competitor does), but if that's not going to happen (or even if it does), allowing a user to attach an image from the camera roll as either type of attachment would be nice. People ask about this sort of thing often, and since cameras are integrated with virtually all mobile devices, this would be a great feature.

  • How to manage the size of PDFs with attachments that have attachments

    I have a "Master" PDF file that has two attached files, one for each path the user can take. The attached documents for the two paths have multiple files attached to them. Those files are the same in both documents, but must be accessed from the "path" files. The result is that I have a HUGE file. Is there a way to let the two attached files share the same attached documents so that they are attached to the master only once, not twice? Or is there another way I can control the size of the "master" file?
    Thanks so much.

    PDF attachments gets saved within the PDF and become a part of it and cannot be used as relative file path further, however you can create links and assign common files to them.

  • Can't combine a IRS fillable form pdf with Acrobat XI

    In past years I have combined an IRS fillable form pdf with attachments before printing and archiving.
    However, this year I contine to get an error message.
    Not sure if it is XI vs X or new type of pdf by IRS but I'm a Acrobat relative beginner and need some assist.
    Maybe just operator error.
    This is the dialog that I keep getting:
    Any tips greatly appreciated.
    Thank you.

    Thank you.
    Yes, it is created by Adobe LCD ES 8.2.
    I don't see the type of document. Probably staring at me. Sorry.
    Can I convert or somehow get around this?
    Last year's looks to be the same type of animal but I was using Acrobat X. Would that make a difference?
    This beginner, old beginner , appreciates the help.

  • Flatten PDF whit Assembler have NO form data ¿lose?

    Hello
    I using LC ES 8.2.1, and have licence for Forms ES and ReaderExtensions ES Services.
    I need flatten XFA based form generated with Adobe Designer, and saved as "Static PDF Form" (we no have Output Service).
    1) Have Static PDF Form + XML data.
    2) Forms ES: Load XML data on the form.
    3) Assembler: Form with data (generated on 2 point) flatten using <NoXFA /> or <NoForms />
    PROBLEM:
    The problem is in the flatten PDF generated by Assembler have NO DATA, if the Assembler DDX happened to get <NoXFA /> or <NoForms />, the resulting PDF does NOT show the form data that had previously preloaded with Forms ES.
    ¿Why PDF LOSE data? ...have any way to flatten PDF with data (without using OUTPUT Service)????
    Thx

    Hi,
    Well it did not work, we have updated the version from the ES 8.2.1 to 8.2.1.3 and still IS running incorrectly.
    We used two different mechanisms to place XML data in PDF:
      - Forms
      - FormDataIntegration
    None works, the imported data do not appear in the final flatten PDF.
    Where it works properly is with LC ES2, we have to update, because we rush to deliver this development.
    While we understand that should work with the ES version 8.2.x, all documentation is in your website says this, but the reality is that (at least to us) does not work, the static PDF preloaded (with DataIntegration or Forms) and then flattened with Assembler NOT show the latest data preloaded.
    Thx.

  • Question: Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages? - Problem: I have 1400 e-mails with attachments that need to be conv

    Is there a way to create a PDF from outlook e-mail that does not embed the attachment? better, is there a way to convert the e-mail with attachement (not embeded) as pdf pages?
    - Problem: I have 1400 e-mails with attachments that need to be converted into pdf and the attachments cannot be embeded.
    System: PC Windows 7 using Acrobat X Prof. - Thank you!

    Hi ,
    There is an option of embedding index for faster search while converting email to a PDF .
    However I am not sure that will serve your purpose or not .
    I would recommend you to get in touch with Microsoft support as well .
    Meanwhile I'll work on it and get back to you in case I get a desired solution .
    Regards
    Sukrit Dhingra

  • Converting mail with attachments to PDF

    I was used to archive mail in Outlook to PDF (using Adobe Acrobat).
    Now I want to convert mail with attachments from Apple mail to PDF, but the attachments are only converted as icons and not readable anymore. Is there a plugin or anything else to solve my problem?

    What are you expecting? An attachment cannot be converted to a PDF file unless you open it in an application that is capable of saving it in PDF format. And any attachments you convert to PDF would be separate from the actual email itself, which would be a different PDF file.

  • How to create in InDesign with "Helios Server" a flattened pdf file?

    Hi,
    anybody know about how to use Helios server to create flattened pdf file?
    some details:
    software: InDesign CS4
    Operating System: Macintosh

    I hope you meant it when you said any and all suggestions would be appreciated. This is kind of for listed bullets, but you seemm well versed that you could play with this to make it work.
    First, you want to set your text and apply some general bullets. You can make a new paragraph style if you’d like to set your indents for personal preference. Off to the side, place your graphic you want to use for the bullet.
    Next, select your bullet text and convert the bullets to text. Now it gets bouncy, but follow slowly and it may work for you.
    Copy one of the general Bullets to the pasteboard. Then, Find/Change, pasting the bullet text character in the Find what. Go back to your document and copy the logo or graphic to your clipboard. Make sure it is formatted to your bullet size and colors, etc...
    Go back to your open Find/Change dialog and select the Change to (special characters for replace) to clipboard contents, formatted. From there, you can select and tweak things such as text wrap.
    Just one FYI - When you try to select all in your text box, the graphics used for the bullets will NOT be selected in the links pallette.

  • Why do I have trouble with attachments being stripped when sending email via Earthlink Webmail using Firefox?

    I recently built a new computer running Win 8.1. However, I have had trouble sending and receiving attachments with Earthlink Webmail on Firefox. I sometimes cannot see attachments to emails I receive, although the size of the file indicates they are there. When I try to send an email with attachments, the browser contacts Earthlink, and then the message reappears, but the attachments have been stripped. If I hit Send again, the message goes, but without the attachments. If I re-attach the attachments and hit send, they are again stripped. I contacted Earthlink support, and they told me it is a problem with Firefox. I then tried IE and was able to send the attachments without a problem.
    I would really appreciate any help as Firefox is my browser of choice.

    1. Not sure how to send an email in a private browsing window... I use Earthlink Web Mail and I cannot find anything on that site about private browsing window.
    2. Have not tried this yet, but will when I get a chance.
    3. Not sure. My old computer ran XP. Never had the problem with it. Right now, it is not connected to the internet, so can't check it.
    4. I neglected to mention... I did try IE and it worked fine.
    I do have Norton 360 installed, but it was not a problem on the XP machine.
    Thanks for your response. I have been so busy lately that I just now picked up your response. I have not had time t to try anything else.
    As far as the file type, I was trying to send pdf files. Have not tried other file types.
    Earthlink limits messages (and attachments) to 20 MB. The files were less than 3 MB.

  • Acrobat Pro 10.12 not possible to sign a pdf with a valid cert

    Hello,
    Under Windows 7 x64, it's not possible to sign a PDF with a valid certificate. Clicking the sign button gives no response and no message what so ever. When using a non valid certificate as in not certified to use for signing, it is accepted and the document is signed?!
    Cheers,
    Andre

    Hi, Daniel.  
    Thank you for visiting Apple Support Communities.  
    I would need a little more information on how you are adding a signature to provide a better answer.  However, here is an article that I would take a look at.  
    Mail (Yosemite): Mark up attachments
    http://support.apple.com/kb/PH19143
    Cheers, 
    Jason H.  

Maybe you are looking for

  • Export to Quicktime Movie Results in Aspect Ratio Distortion

    All of my original footage was shot in miniDV. I have created a sequence with the following settings: Frame size: 720 x 480 Compressor: DV/DVCPRO - NTSC Pixel Aspect: NTSC - CCIR 601 Vid rate: 29.97 fps Ultimately the sequence needs to go to DVD with

  • I want to open a directory not a file

    Hi, I have a question. I'm looking for a dialog box where the user can browse for a directory. All I can find is a dialog box where you can open a file. Is there one to open a directory? If not, how can I solve this so the user can select a directory

  • OnChanger="get_ajax_select_xml(this);" with  select list (query named LOV)

    Hello, i used Vikas'example Re: cascading lov for tabular form i have a problem with Select list (query based LOV) when run tabular form i have the following error: report error: ORA-06502: PL/SQL: numeric or value error: character string buffer too

  • Why has Apple decided the 3G won't have mult-tasking with the new OS 4.0

    Just would like a answer if apple would re-consider enabling multi-tasking on the iphone 3G when they release OS 4.0, maybe in a limited form. My experience is the iphone 3G will often leave applications running in the background on OS 3.x and I have

  • Setting won't save after closing firefox

    Hi, When I open Firefox it search my addons for compatibility with the version of my firefox, after then it open up with all my closed tabs and a notification about updating one of my addon. I tried to change my setting so it won't open all closed ta