PDF File created in CF MX prints SLOW

After A LOT of playing around, I finally figured out how to create a PDF file, add watermarks, images on certain pages, footers and security.  PHEW!
But now, when the user downloads the PDF file, it is pretty big and when you print it, a progress bar that reads "flattening:xx%" comes up for every page and takes a long time to print.
The PDF I created is not a PDFForm, so I am not sure why "flattening" is coming up.  In any case, I need the file to print faster.
So here is the main question, once I have created a PDF file and it is on my server, is there a way to flatten (I know flatten is not the correct word, since flattening is for forms - but I hope you understand what I mean) the file so that it can no longer be stripped of watermarks, footers, etc?  I imagine doing so, will also make the file print more quickly.
For example, if I take my PDF file and print it to a 3rd party distiller program as a new PDF file and I open the new file, it prints almost instantly.
I can't attach the file, so here it is on my server:
https://www.calcerts.com/mybigpdf.pdf

Here is a better example.
https://www.calcerts.com/PBR1.pdf
is the original PDF file that is uploaded by a user.  Note that it is only 48kb in size.
I take the file, add a couple of watermarks and a footer for each page as well as a small image on the last page, add security on it and BAM, the file:
https://www.calcerts.com/PBR1_AFTER.pdf
is now 1.5 MB and it takes a LONG time to print.
Thoughts?

Similar Messages

  • Pdf file created in Word 2008 will not open in Acrobat 8.2.6 or any other Adobe program

    I have created a 12 page newsletter in Microsoft Word Publisher 2008 and have done so many times before with no problem. Today, I have tried to save it as a .pdf file both in Save As and through the printer. Each .pdf file created in Word will not open in Acrobat 8.2.6, Photoshop C3, Adobe Reader  nor any other Adobe software.
    When I go to open it in Acrobat, my Mac gives me the spinning rainbow. If I try to click on the file, I get a watch and then Acrobat crashes or I have to force quit the software. I really need to convert this file and get it to the printer. Any advice???
    Mac OS X 10.6.7
    Word 08 12.2.8
    Acrobat 8.2.6
    Adobe Reader 10.0.0

    Here is a better example.
    https://www.calcerts.com/PBR1.pdf
    is the original PDF file that is uploaded by a user.  Note that it is only 48kb in size.
    I take the file, add a couple of watermarks and a footer for each page as well as a small image on the last page, add security on it and BAM, the file:
    https://www.calcerts.com/PBR1_AFTER.pdf
    is now 1.5 MB and it takes a LONG time to print.
    Thoughts?

  • Finding Hidden PDF files created by iPhoto/Book

    early last year there was a discussion concerning the hidden high res pdf files created by Book in iPhoto. I've searched for it with no luck. I want to use the pages I create in Book for Quicktime Slideshows, as I did then. Is this still possible with iPhoto 6 and if so does anyone know where they are hidden now? I did right click on the book and save a pdf of the book but the res does not seem very high.

    It's been a while since you guys were on this topic, but here's my 2 cents.
    Wanting to see a PDF of my book to check on some text wrap issues, I did click "buy now" last night and cancelled as soon as the book was done assembling and iPhoto started the upload. Didn't receive an e-mail thanking me for my order, so I figured things were fine.
    This morning, I discovered a "pending transaction" to Apple on my bank account, and I am currently waiting to see if it will actually go through or not. When calling Apple Customer service, they told me my credit card was probably "pinged" because the order was started, but the charge may "fall off" because the upload was aborted. If I wanted to know for sure, I had to e-mail iPhoto support (calling wasn't possible), and could expect a response within 48 hrs. Well, within that time frame I will be able to see for myself what happens with that charge, but in the meantime the amount is deducted from my balance. So for anyone out there wondering what happens when you click "buy now," there you go.
    The good news is, I did get the desired PDF file. I compared it with the file that "File>Print" generates and the only differences I see in a quick comparison are:
    - File>Print does not include the blank pages (inside covers and back page), so I end up with 55 pages instead of 58, and the file size is slightly smaller (46.6MB compared to 47.2MB)
    - File>Print's PDF shows 792x612 dimensions (under "get info"), compared to Buy Now's 797.76001 x 617.76001. I have no idea what that is about. Maybe a bleed or something?
    Hope this helps someone.

  • Why does my Acrobat IX not open PDF files created with my Adobe CreatePDF application?

    My Acrobat IX will not open PDF files that I create with my Adobe CreatePDF application

    Thanks for answering ... Long answer sorry ... recently upgraded from XP to Windows 7.  With XP I could create PDFs with/for any document I created ... I think the XP App was Acrobate Complete as well as I could print directly to a PDF file. In any case, I was always able to creat PDFs.  Since upgrading to Windows 7, I lost my ability to create PDF files by conversion or by printing directly to PDF format. Therefore, I purchased the Adobe CreatePDF application from Adobe for about $100.  However all Adobe CreatePDF files have a different screen icon and my Acrobate XI supplied with my new Windows 7 intsall does nor recognize the Adobe CreatePDF created files. I am guessing but I suspect the Adobe CreatePDF app is creating Postscript print files and not Windows compatible print files.  I would like to tell Adobe about this Bug or failure, but it seems I am unable to contact Adobe directly and talk/chat with a human. 

  • Problem with PDF files created by Indesign

    PDF files created by Adobe Indesign come up as blank pages whereas PDF files created by Mac OS X or Apple's Pages display OK. Is there a difference in the way PDF files are created?

    No problem with Adobe Reader 8 or 9 .

  • PDF file created from Oracle Report is attached wrongly

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2, document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

    The code looks absolutely good. I have the same code working in my system. Only difference is I use TRUE and DBMS_LOB.Session for the BLOB I use to read from the BFILE.
    I can suggest one more way to handle to binary attachments if you are on Oracle 9i DB are later versions.
    procedure attach_document (p_document_id   in varchar2,
                               p_display_type  in varchar2,
                               p_document      in out nocopy clob,
                               p_document_type in out nocopy varchar2)
    is
      l_nid        number;
      l_directory  varchar2(100);
      l_filename   varchar2(100);
      l_content_type varchar2(100);
      l_src_offset binary_integer := 1;
      l_dst_offset binary_integer := 1;
      l_err_msg    varchar2(100);
      l_amount     number;
      l_bfile BFILE;
      l_blob  BLOB;
      l_clob  CLOB;
      file_not_found exception;
      pragma EXCEPTION_INIT(file_not_found, -22288);
    begin
      l_nid := to_number(p_document_id);
      l_directory := trim(wf_notification.GetAttrText(l_nid, 'ATTR_DIRECTORY'));
      l_filename := trim(wf_notification.GetAttrText(l_nid, 'ATTR_FILENAME'));
      l_content_type := trim(wf_notification.GetAttrText(l_nid, 'ATTR_CONTENT_TYPE'));
      l_bfile := BFILENAME(l_directory, l_filename);
      dbms_lob.createtemporary(l_blob, true, dbms_lob.Session);
      dbms_lob.createtemporary(l_clob, true, dbms_lob.Session);
      begin
        dbms_lob.FileOpen(l_bfile, dbms_lob.File_Readonly);
      exception
        when file_not_found then
          l_err_msg := to_char(sqlcode)||' - Attachment File "'||l_filename||'" is not found.';
          raise_application_error(-20002, l_err_msg);
      end;
      dbms_lob.LoadBLOBFromFile(l_blob, l_bfile, dbms_lob.LobMaxSize, l_src_offset, l_dst_offset);
      dbms_lob.FileClose(l_bfile);
      -- Encode the BLOB content to BASE64 and attach to notification  
      wf_mail_util.EncodeBLOB(l_blob, l_clob);
      l_amount := dbms_lob.GetLength(l_clob);
      dbms_lob.Copy(p_document, l_clob, l_amount, 1, 1);
      -- Mention an appropriate Content Type so that Notification System
      -- understands the attachment content
      p_document_type := l_content_type||'; encoding=base64; name='||l_filename;
    end attach_document;Here I read the BLOB from the filesystem and base64 encode it before giving it to the Mailer. Please note that this is a PLSQLCLOB based attachment as against PLSQLBLOB that you are using.
    Thanks - Vijay

  • PDF file created from Oracle Report is created wrongly using dbms_lob

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2,
                                                                                         document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

    Hi,
    Please help. It is very urgent.
    I am using Oracle Developer 10gR2, Oracle Report 10.1.2 on Windows 2000.
    I would like to attach the PDF file created by Oracle Report to the Notification sent from Workflow.
    I use the following package procedure in my Workflow.
    procedure Create_File_Attachment (document_id   in varchar2, display_type  in varchar2,
                                                                                         document      in out blob, document_type in out varchar2)
    is
         l_itemtype          varchar2(100);
         l_itemkey           varchar2(100);
         l_output_directory  varchar2(30);
         l_filename          varchar2(255);
         src_loc             bfile;
         bdoc                blob;
         src_offset          number := 1;
         dst_offset          number := 1;
         amount              number;
    begin
         l_itemtype := substr(document_id, 1, instr(document_id, ':') - 1);
         l_itemkey := substr(document_id, instr(document_id, ':') + 1, length(document_id) - 2);
         l_output_directory := 'USR_TMP_DIR';
         l_filename := Wf_Engine.GetItemAttrText(l_itemtype, l_itemkey, 'ATR_FILENAME');
         src_loc := bfilename(l_output_directory,l_filename);
         dbms_lob.createTemporary(bdoc, FALSE, dbms_lob.call);
         dbms_lob.fileopen(src_loc, dbms_lob.file_readonly);
         dbms_lob.loadblobfromfile(bdoc,src_loc,dbms_lob.lobmaxsize,src_offset,dst_offset);
         dbms_lob.fileclose(src_loc);
         amount := dbms_lob.getLength(bdoc);
         dbms_lob.copy(document,bdoc,amount,1,1);
         document_type := 'application/pdf; name=attach.pdf';
    end Create_File_Attachment;Oracle Report created the PDF file correctly (original.pdf).
    I tried to attach the PDF into my Workflow.
    I can see the file is attached (attach.pdf), but it cannot be opened.
    The Adobe shows : 'A drawing error occured.' each time I open the attachment.
    I compare the original.pdf and the attach.pdf
    However, there is one specific difference
    - in original.pdf, the line started with '.' (single period)
    in attach.pdf, the line is started with '..' (two periods)
    Thus the attachment cannot be opened.
    After I delete the period, it can be opened.
    Question:
    - Has someone ever succeed in attaching the PDF created from Report?
    - Are the codes above is wrong?
    - Or perhaps the DBMS_LOB.LOADBLOBFROMFILE always double the single period on front of the line?
    - Is there any solution on this?
    Note:
    I have succeed in attaching PDF files unless the PDF created by the Report.
    Sorry for the long post.
    Please help. It is very urgent.
    Any help is appreciated.
    Many thanks,
    Buntoro

  • PDF files created in Preview won't open in Adobe Reader

    I consider Preview to be a swiss army knife when it comes to working with PDF and graphic files. Lately (since the last OS update?) PDF files created in Preview won't open in Adobe Reader. Reader either crashes or just becomes unresponsive. I've been able to open the files in older versions of Adobe Professional but Reader 8 or 9 can't open the files. Anyone else experiencing these problems?

    Yes. We noticed this problem after upgrading to 10.6.7. When we made a PDF from Word 2011 or even Text Edit through Adobe's "Save as Adobe PDF" it would hang. When we made a PDF using Apple's "Save as PDF" it would lock up Acrobat Pro 9 and also Acrobat Pro X. NOTE that this only happened using Adobe OTF fonts.
    I posted this problem on Adobe's forum and received a message from admin there that this was caused by a change in font handling with Apple's 10.6.7 update.
    As of yet, no solution has been posted. I also received a message from Adobe's Tech Support that it was forwarded to their engineers.
    Still waiting.

  • How to use sdk to get the image in the pdf file created by illustrator?

    I have some pdf files create by illustrator and saved as pdf documents,
    now I want to use the sdk to get the image in pdf files.
    how to?
    Thanks.

    Thank you first!
    Yes,you are right,since I am new to illustrator,and I want to try to write a plugin,
    I have read the sdk doc and API and opened the sample in vs2010,but no idea about how to operate the pdf doc in illustrator with api.
    Hope more advise or any examples,thank a lot.

  • Will Adobe Reader 11 read older PDF files created in Adobe Acrobat 8?

    Hello,
    I have finally updated my computer & husband computer at home to Adobe Reader 11, but now I have a question that I can't seem to find the answer to.
    I scanned some old family pictures using Adobe Acrobat 8 onto CD's, and I used Adobe Reader 8.3.0 to view them.  Now I would ike to know, if the newer Adobe Reader 11 will still read the older pdf files created in acrobat 8?
    If this won't work, then how do I convert the pdf files to jpeg?  I have Microsoft XP Professional onboard our computers.
    My husband does have a Adobe Photoshop onboard his computer.
    Please advise.
    Thank you,
    Maureen

    Adobe Reader XI should be able to view old files as well.

  • Why can't I open PDF files created in Adobe X using Adobe XI? How do I fix this?

    Why can't I open PDF files created using Adobe X in Adobe XI?

    I try and open them in Reader (double left click on the file) and all I get is a single screen with two overlapping frames neither of which have anything to do with the subject although the presentation title is at the top.  One of the frames had "Adobemail.com" on it. Our work computers were recently up-graded to Adobe XI and this was the first time I tried to open a presentation that has worked fine in the past.  I would have thought that Adobe XI would have been backward  compatible, but it doesn't seem so. Any help would be greatly appreciated as I have an 08:00 First-Aid class tomorrow and need this presentation.  Apparently Adobe forums are off-line for up-grades.  Thanks
    [private data removed]

  • Strange that I can save a pdf file created in windows 8.1 to my cloud storage

    Strange that I can save a pdf file created in windows 8.1 to my cloud storage, but then I don't see it when I open my account. What is strange is that when I try again to save the file, system ask me to change the file name or over write current file. But file not present in my drive. Any help would be much appreciated

    Hi jeffjn,
    Please log out of your account, clear the cache, and then log back in. If that doesn't work, please log in using a different web browser. (See System requirements | Acrobat.com for a list of supported web browsers.)
    Please let us know how it goes.
    Best,
    Sara

  • PDF files scanned at B & W print to an HP 2055dn Postscript printer as white on black

    PDF files scanned at B & W print to an HP 2055dn Postscript printer as white on black. Non postscript printers print the same file correctly. This is the case with three different scanners. Scanning the same sheets into greyscale prints fine with all printers.
    HP claims it is not a problem with their printers. Someone from Fujitsu (makers of Scansnap) said to "
    Verify that Advance Emit Transfer (print correction function for the Mac print table) is unchecked. Go to Print > Advanced Emit Transfer Function and click to uncheck. " but I can't seem to find anything like that at all.
    I really prefer to scan in B & W, as I have to scan several hundred pages and the resulting file is both smaller and higher quality than the grayscale files, but I can't print them at home; I have to use the printer at work and that really isn't appropriate.

    Hi,
    Can you try some experiments please - or tell us if you have tried them.
    1) Load a new image (one that hasn't been saved before) into the editor and without saving it, try printing from the editor. It is important that PSE hasn't saved it.
    2) Load any image into the editor and do a Save for Web (you may have to reduce the size) in JPG format and see if you can print that JPG either from PSE or another program.
    Please let us know the results.
    Brian

  • Problems opening .pdf files created in Windows in MAC

    My clients that are using Macs are having problems opening password protected PDFs that I created in Windows. Any suggestions?

    Are your clients using Adobe Reader on Mac, or the built-in Mac OS Preview?  Preview does NOT support the full PDF standard :(.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Mon, 26 Sep 2011 15:04:18 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Problems opening .pdf files created in Windows in MAC
    Problems opening .pdf files created in Windows in MAC
    created by Hollcy<http://forums.adobe.com/people/Hollcy> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/3939175#3939175

  • I am unable to open PDF files created from another PGM.

    Is there an ADOBE pgm that will properly read in PDF files created from another pgm and convert them to ADOBE PDF so they do not error when they are opened to be viewed by ADOBE pgm?

    There is no way to know all the different scan/fax/pdf printers that are used to make the original PDFs...
    CAD-KAS PDF Editor 2.6 is used to edit the files
    doPDF 5 is used to modify pdf file.
    Interesting, I can use the free CAD-KAS PDF reader to open & read the PDF file that the ADOBE XI reader
    gives me the above error message.

Maybe you are looking for

  • Which speaker to use.?...( websites provided...)

    Any good suggestions for a speaker?? The MACBOOK speakers suck.!!!.., and I'm not even an audiophile I'm really liking this one, but i'm still looking~~ Logitech Z-10 http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2173,CONTENTID=122 63

  • Problem in JDBC Adapter in SAP PI 7.0

    Hi Everyone, I have scenario JDBC to JDBC......I Designed and Configured the Scenario....When I executed the scenario my connection to the PI dev server is lost........ Then in Config tool I setting jdbc adapter option to "manual" which is "always"..

  • Photo booth crashes

    Process:         Photo Booth [730] Path:            /Applications/Photo Booth.app/Contents/MacOS/Photo Booth Identifier:      com.apple.PhotoBooth Version:         6.0 (517) Build Info:      PhotoBooth-517000000000000~1 Code Type:       X86-64 (Nativ

  • Change click behavior BAL_DSP_LOG_DISPLAY

    Hello! I have an requirement that is calling FB03 from a double click on an aplication log. I'm using FM BAL_DSP_LOG_DISPLAY to show the required logs. So far so good. The problem is changing the default behavior on the double click of a message (sho

  • Marketing Plan - Questions

    Dear friends, I have created a marketing plan using crm_mktpl, and assigned a marketing org to it. What happens to the market plan after its created.. how does the marketing manager know that a plan is created and he needs to approve it. where is the