Place PDF in Indesign

Hi
When I place a PDF in my Indesign Document, it's dreadfully blurry.
What settings do I need to change when I create the PDF?
Thank you -
Marion

I don't know what settings I've been using to create my pdfs, BUT - the High quality setting solved it.
I should have thought of that - I somehow associated that setting with images.....  but the pdf is probably the same thing as an image.
Thank you
Marion

Similar Messages

  • Can't place pdfs in InDesign CC

    Can't place pdfs in InDesign CC as before - message comes up "Cannot crop to bleed box is not defined, or is empty." What happened?

    That's a new improved error message apparently. The old one just said
    Can't Place PDF (not very helpful, either).
    The options are sticky so the prior PDFs must have had bleed.
    In any event, I'm glad you got it sorted.

  • Place pdf into InDesign CS4 js

    Hi, I have those lines of script that place the pdf into InDesign, but in the process new frame gets created in which the pdf is placed, and I need it to be placed into my existing frame. How could I do it:
        var myRectangle = myDoc.pages[0].rectangles[0];   
        myPage = myDoc.pages[0];
        myPDFPage = myPage.place(File(myFile), [0,0])[0];
    Thank you very much for your help.
    Yulia

    Yes, you are right, I am stuck for a different reason, it does places the second page.
    What I think is going on,  and maybe there is a better approach to it than the one I am going about it: when I have single page pdf for the 1st page and single page pdf for the 2nd page, my script first tries to upload 1st pdf as multi-page just in case there is only one pdf with both files. And for some reason it uploads single page pdf twice (into the second InDesign page as well when there is no second page in the 1st pdf [If I could avoid that all together would be great]). So my script verifies if the pdf uploaded into the 2nd page is 1st page of 1st pdf then it deletes it. And then it looks if there is a file for the second page, and uploads it. So my new challenge is that when it verifies what page of the pdf is uploaded into the 2nd page of InDesign after the 1st pdf upload, it just crashes, and it worked with the previous way of placing pdfs (the green line of the script).
    The second my issue is that, as it places the files, it dis-attaches the frames from the master page, and I need them to be still half attached. For the same reason new frames created by place command - is a problem for me. Maybe easier way, if it's possible at all, half-attach those new frames to the Master page afterwords. (This is the main goal for me).
    Here are both functions: to upload first pdf and second pdf:
    function myPlacePDF(myDoc, myFile){
        app.pdfPlacePreferences.pdfCrop = PDFCrop.cropMedia;
        // page 1
        myPage = myDoc.pages[0];
        var myRectangle = myDoc.pages[0].rectangles[0];   
        app.pdfPlacePreferences.pageNumber = 1;
        myRectangle.place(myFile);
        //PDF.place (myFile);
        //myPDFPage = myPage.place(File(myFile), [0,0])[0];
        myRectangle.geometricBounds = [0, 0, myGB_Y2, myGB_X2];
        // page 2
        myPage = myDoc.pages[1];
        var myRectangle = myDoc.pages[1].rectangles[0];
        app.pdfPlacePreferences.pageNumber = 2;
        myPDFPage = myRectangle.place(myFile);
        //PDF.place (myFile);
        //myPDFPage = myPage.place(File(myFile), [0,0])[0];
        myRectangle.geometricBounds = [0, 0, myGB_Y2, myGB_X2];
        if (myPDFPage.pdfAttributes.pageNumber != 2){
            myPDFPage.parent.remove();
        try{
            var myFrame = myDoc.pages[0].rectangles[1];
            if (myFrame.isValid == true){
                myFrame.remove();
        catch (e){}
        try{
            var myFrame = myDoc.pages[1].rectangles[1];
            if (myFrame.isValid == true){
                myFrame.remove();
        catch (e){}
        app.pdfPlacePreferences.pageNumber = 1;
    function myPlacePDFback(myDoc, myFile){
        var myFrame= myDoc.pages[1].rectangles.[0];
        if (myFrame.isValid == false){
            myDoc.pages[1].rectangles.add();
            myFrame.strokeWeight = 0;
            myFrame.geometricBounds = [0, 0, myGB_Y2, myGB_X2];
        app.pdfPlacePreferences.pdfCrop = PDFCrop.cropMedia;
        myPage = myDoc.pages[1];
        var myRectangle = myDoc.pages[1].rectangles[0];
        app.pdfPlacePreferences.pageNumber = 2;
        myRectangle.place(myFile);
        //myPDFPage = myPage.place(File(myFile), [0,0])[0];
        app.pdfPlacePreferences.pageNumber = 1;
    Kasyan, your script might be helpful, and I would like to look into it.
    Thank you very much for your help.
    Yulia

  • CS3 and Delphi: Place pdf into indesign

    Hello,
    I am developing a script with Deplhi  that automates the creation of documents.
    I would like to be able to place pdf documents in an InDesign document. I adapted a script that I found in this thread: http://forums.adobe.com/message/3013174
    I only had to define the proper types for the variables, cause Delphi doesn't allow untyped variables. There was one line in particular that I had to modify thoroughly:
    myPDFPage = myPage.place(File(myPDFFile), [0,0])[0];
    The PlacePoint parameter had to be an array of double, and the missing parameters had to be set. Eventually, the following code worked:
    var
      APoint:      array of double;
    begin
      SetLength(APoint, 2);
      APoint[0] := 0;
      APoint[1] := 0;
      myPage.place(Filename, APoint, ActiveDocument.Layers[1], false, false);
    In the original script, the result of the place function is assigned to the variable myPDFPage, and I am having troubles to get this assigment working. Often the TypeLib uses OleVariants and you have to figure out by ourself which type(s) are allowed and have to be used, and which type cast(s).
    In the original script this code follows:
    myFirstPage = myPDFPage.pdfAttributes.pageNumber;
    The only interfaces in the TypeLib that have a property called pdfAttributes are PDF and ImportedPage. But neither of those types work if I define pdfAttributes to be of that type. I am not sure whether the fact that place seems to return an array adds additional problems. Most of the times, arrays from in TypeLib are based in the index 1, not zero.
    But I tried
    var
      APoint:      array of double;
      myPDFPage:   PDF;
    begin
      myPDFPage := PDF(myPage.place(Filename, APoint, ActiveDocument.Layers[1], false, false)[0]);
    and
    var
      APoint:      array of double;
      myPDFPage:   ImportedPage;
    begin
      myPDFPage := ImportedPage(myPage.place(Filename, APoint, ActiveDocument.Layers[1], false, false)[0]);
    and the same with and array index of 1 instead of 0, and without any index. But none of it would be compiled without an error.
    Doies anybody know how that command line has to be or which type myPDFPage has to have?
    And more generally: How could I determine the possibla types of a parameter, variable or return type that is an OleVariant in the TypeLib?
    I found some InDesign CS3 scripting specific pdfs here: http://www.adobe.com/products/indesign/scripting/, but no complete reference of all functions and types.
    Best regards,
    Christian Kirchhoff

    In order to make the code compilable, I had to do a double typecast. The result of the place function - in the Typelib - is OleVariant, and I couldn't use the snytax place(...)[0]; directly.
    So I declared a variable myPDFPages as an array of PDF, and assigned the entiry result of the place function to that.
    The new code is:
    var
      APoint:      array of double;
      myPDFPages:  array of PDF;
      myPDFPage:   PDF;
    begin
      myPDFPages := myPage.place(Filename, APoint, ActiveDocument.Layers[1], false, false);
      myPDFPage := PDF(myPDFPages[0]);
    But: allthough the code compiles, the line myPDFPages :=... throws an error (after the pdf is inserted in InDesign).
    If I just use execute the place command without assingning the result to anything, it works without an error. But the code I copied from the aforementioned forum thread uses the result, and so want I.
    I'll do some further testing on this.
    Best regards
    Christian

  • Place all pages in pdf into indesign

    I want to place all pages in a pdf file into indesign, I mean need to load all pages in a pdf in single place method and place every pages individually on iterating through pages in indesign.
    Note: Manually this can be done by enable "Show import option",which opens preference window in which we can prefer to ALL option under PAGES menu under GENERAL tab while preforming Place pdf.

    You are finding PlaceMultipagePDF.jsx script and here is it for you
    //PlaceMultipagePDF.jsx
    //An InDesign CS3 JavaScript
    //Places all of the pages of a multi-page PDF.
    //For more on InDesign scripting, go to http://www.adobe.com/products/indesign/xml_scripting.html
    //or visit the InDesign Scripting User to User forum at http://www.adobeforums.com
    //Display a standard Open File dialog box.
    var myPDFFile = File.openDialog("Choose a PDF File");
    if((myPDFFile != "")&&(myPDFFile != null)){
         var myDocument, myPage;
        if(app.documents.length != 0){
            myDocument, myNewDocument = myChooseDocument();
        else{
              myDocument = app.documents.add();
              myNewDocument = false;
        if(myNewDocument == false){
             myPage = myChoosePage(myDocument);
        else{
            myPage = myDocument.pages.item(0);
        myPlacePDF(myDocument, myPage, myPDFFile);
    function myChooseDocument(){
        var myDocumentNames = new Array;
        myDocumentNames.push("New Document");
        //Get the names of the documents
        for(var myDocumentCounter = 0;myDocumentCounter < app.documents.length; myDocumentCounter++){
            myDocumentNames.push(app.documents.item(myDocumentCounter).name);
        var myChooseDocumentDialog = app.dialogs.add({name:"Choose a Document", canCancel:false});
        with(myChooseDocumentDialog.dialogColumns.add()){
            with(dialogRows.add()){
                with(dialogColumns.add()){
                    staticTexts.add({staticLabel:"Place PDF in:"});
                with(dialogColumns.add()){
                    var myChooseDocumentDropdown = dropdowns.add({stringList:myDocumentNames, selectedIndex:0});
         myChooseDocumentDialog.show();
        if(myChooseDocumentDropdown.selectedIndex == 0){
            myDocument = app.documents.add();
            myNewDocument = true;
        else{
             myDocument = app.documents.item(myChooseDocumentDropdown.selectedIndex-1);
            myNewDocument = false;
        myChooseDocumentDialog.destroy();
        return myDocument, myNewDocument;
    function myChoosePage(myDocument){
        var myPageNames = new Array;
        //Get the names of the pages in the document
        for(var myCounter = 0; myCounter < myDocument.pages.length;myCounter++){
            myPageNames.push(myDocument.pages.item(myCounter).name);
        var myChoosePageDialog = app.dialogs.add({name:"Choose a Page", canCancel:false});
        with(myChoosePageDialog.dialogColumns.add()){
            with(dialogRows.add()){
                with(dialogColumns.add()){
                    staticTexts.add({staticLabel:"Place PDF on:"});
                with(dialogColumns.add()){
                    var myChoosePageDropdown = dropdowns.add({stringList:myPageNames, selectedIndex:0});
        myChoosePageDialog.show();
        var myPage = myDocument.pages.item(myChoosePageDropdown.selectedIndex);
        myChoosePageDialog.destroy();
        return myPage;
    function myPlacePDF(myDocument, myPage, myPDFFile){
         var myPDFPage;
         app.pdfPlacePreferences.pdfCrop = PDFCrop.cropMedia;
         var myCounter = 1;
         var myBreak = false;
         while(myBreak == false){
              if(myCounter > 1){
                   myPage = myDocument.pages.add(LocationOptions.after, myPage);
              app.pdfPlacePreferences.pageNumber = myCounter;
              myPDFPage = myPage.place(File(myPDFFile), [0,0])[0];
              if(myCounter == 1){
                   var myFirstPage = myPDFPage.pdfAttributes.pageNumber;
              else{
                   if(myPDFPage.pdfAttributes.pageNumber == myFirstPage){
                        myPage.remove();
                        myBreak = true;
              myCounter = myCounter + 1;
    Shonky

  • How do I export to PDF in InDesign without the hidden layers

    Hi there
    This is probably a simple solution but I am trying to export a document to PDF in InDesign without the hidden layers.
    i.e - I have created a document that includes images etc from an existing PDF.
    When I open the new PDF and use the 'find' tool, Pro is highlighting words on the hidden (original pdf).
    I have tried exporting only the visible layers but is there a setting in InDesign that I can use to export only the visible content to pdf?
    Thanks in advance.

    Jenjimay wrote:
    I have tried exporting only the visible layers but is there a setting in InDesign that I can use to export only the visible content to pdf?
    Even if you mask off part of a PDF, or place a white rectange on top of it, the text will still be selectable. Other than with raster images, InDesign is not smart enough to clip off parts of a PDF (or rather, it's smart enough to leave them as they are). PDFs can contain incredibly complex objects, and any clipping routine would probably make as many mistakes as it solves problems.
    Introduce a small Transparency to this image or one on top of it, then export with Acrobat 4 (PDF 1.3) settings. Since that old version does not support native transparency, ID is forced to redraw the image, and then it will clip off excess data.

  • I created a file in Photoshop CS5 (a photo) and another in Illustrator CS5 (a graph) to place in my InDesign CS5 brochure. When the Photoshop and Illustrator files are placed in InDesign, they look blurry - whether viewed in InDesign, printed, or saved as

    I created a file in Photoshop CS5 (a photo) and another in Illustrator CS5 (a graph) to place in my InDesign CS5 brochure. When the Photoshop and Illustrator files are placed in InDesign, they look blurry - whether viewed in InDesign, printed, or saved as a PDF. Can anyone give me some tips on how to fix this? Thanks!

    Ask in the program forums
    This forum is about the Cloud as a delivery process, not about using individual programs
    If you start at the Forums Index http://forums.adobe.com/index.jspa
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

  • Placing a PDF in InDesign CS5

    Hello,
         I am new to these forums and new to forums as a whole. I have a question about InDesign CS5. I recently upgraded from CS3 to CS5. In InDesign CS3 when I placed a PDF file (or other Adobe file for that matter) once I selected a crop option if I then placed another PDF (or other Adobe file) the Place command remembered my last crop selection and made that the first option. I find that when I place PDFs now in CS5 that I have to select my crop option every time. The default seems to be Bounding Box (visible layers only), and no matter how many times I select another crop option, say media, and then place the item, I always have to reselect the crop option to media when I again place another PDF. Is there and option for changing this default? Or is there a way of turning on a option that will cause InDesign CS5 to remember my last crop selection under the Place command? If so, how do I do it? It would save my lots of time if I could figure this out.
    Thank you.
    CB

    Stix wrote:
    Welcome to the forum Charles, I hope your first experience is a positive one.
    I've had exactly this problem, which was solved in a forum on Indesign Secrets, another great Indesign resource.  The thread is here, but let me know if you have any problems implementing the scripts in it.  I've adapted them and made my own list so for example I can easily just click on one to place page 7 of a PDF to it's trim box, which not only means you don't have to have "show options" ticked when placing but if you drag and drop (which is often a lot quicker) you get what you want to.
    Thank you Stix, for the welcome and the information as well.
    I believe I have a working understanding of how to edit and place scripts in InDesign. (Now that is scary!) Now I have a new challenge; related to my original challenge. The PDFs that I am placing are not just single page PDFs; some of them can be 50 - 100 pages. That being said, one of my favorite things to do is to take a existing InDesign file, where I have already placed and sized the PDFs, rename it and then go in and select the previously placed PDF and replace it with page xxx; all throughout the document. Perhaps I am doing something wrong with the script information because I do not see away for me to choose the page I want without using the "show import options*. Using this option of course kicks out the script I have selected; does it not? Is there a option in one of example scripts that would help me with this?
    CB

  • PDF of InDesign CS5.5 has text drift in a table

    In InDesign CS5.5 I have a large table (36 rows, 17 columns). The content is prices, right-aligned, two decimal places.
    When I export as a PDF, the numbers slowly shift, moving top to bottom, either to the left or right (this happens on many (but not all) different pages), for 20-25 rows, at which point the positioning is corrected. Total deviation from row 1 until the correction varies, from 0.0067 inches to 0.0109 inches.
    This happens only when exporting a PDF from InDesign (CS5.5). If I print from the .indd the problem is not there. If I print a .ps and use Distiller, the resulting PDF is fine.
    All cells have the same settings as far as padding, tabs, type size.
    I'll post this in the InDesign forums as well.

    Steve, I don't seem to be able to move this back -- missing some privileges I think. This was a cross-post -- already in the ID forum -- and he was hoping maybe someone in Acrobat had more ideas. Can you move it back again?

  • Automatically batch place objects in InDesign and show their respective filenames

    Hello everyone!
    I have a project that has a potential to take quite a long time if done manually, so I'm wondering if it's possible to batch the process.  I have about 1500 individual TIFF images that I need to place on individual InDesign pages as well as listing their filenames underneath them all.  I want to fit as many as possible onto each page while still leaving a little white space around the edges.  It's a catalog library of a bunch of different designs for a printing company so they have all their designs in a PDF they can pull up.
    Is there a way to batch place all the images while displaying their respective filenames in text boxes underneath them (instead of doing it one by one)?  If this isn't possible in InDesign but there's a way to do it in Photoshop or another application I'm more than willing to try alternatives.  Perhaps a script of some sort?
    Any input would be GREATLY appreciated as it would save a ton of time!  Thanks!
    - Dillon

    You can check Data Merge fearure of InDesign , this should be helpful in your case.
    The complete step by step details with demonstration pics could be found in this link
    http://www.adobe.com/designcenter-archive/indesign/articles/indcs2at_datamerge.html

  • Problem Importing a PDF into Indesign CC

    We don't usually have this problem with InDesign CC, but this came at a very bad time and I'm not sure if it is a bug in InDesign CC or not. We were given a PDF from an auditor of a client to bring into their financial report. The strange thing is that we were only able to bring in pages on left pages, any page that was brought in on the right hand page did not show. In fact, if we copied a page that showed up on the left page and moved it to the right page, it would not show it.
    Fortunately we still have CS6 and we were able to place the same PDF with no problem. So we had to save the document into a CS6 format and then insert the PDF.
    I don't know what would have caused this, but we haven't had problems with other PDFs. It seems that there was something about that PDF that InDesign CC didn't like (but that CS6 was able to handle).
    Any ideas?

    I think we'd need to see samples from the actual .indd and PDF files to give you any real answers.

  • PDFs from InDesign for print then web?

    The workflow is supposed to be: we simply take the PDF files which were created from InDesign and then sent to our printer, and give them to our web service company who has our online edition finished by morning. But we're upgrading our photo processing for the print edition, which results in overly bright photos for printing on newsprint. With a 48 page tiny-town newspaper, it would be a major problem to replace all of the photos in the layout with specially processed ones for web. But we need to have PDFs for our web service company that contain, richer, higher contrast photos for web.
    Is there some trick other than manually processing new photos for every page and manually re-linking each one on every page? Maybe CS4 has some feature that makes this easy, i.e., automated web version of an InDesign layout, i.e., links to an alternate folder of photos just for a web version?
    CS2 / Mac OS 10.4.11 / various Mac hardware

    RGB-workflow is just a way to do things... You can do it in at least CS2, CS3 and CS4 softwares, propably with earlier versions too. It basically means that you adjust your images in some wide RGB gamut, like AdobeRGB, then save them without making CMYK conversion and place them to indesign layout as RGB images. When you export your PDF, you make that RGB-CMYK conversion to all images at once.
    Normally people can use same adjustments for both web- and print images. When image is adjusted well, icc-profile that will be used for RGB-CMYK converion will take care of fine tuning like compensating midtones and Total Ink Limits...
    In InDesign CS4 you can use Photoshop PSD images with adjustment layers. If you really have to make some adjustment that would be nice to get rid off in indesign, you may toggle visibility of those adjustment layers in InDesigns Object Layer Options tool.
    I still suggest that you try to fix your workflow so that you don´t have to make any extra adjustments to images for printing after you have once placed them to indesign layout. It should be possible, millions of publishers do that every day...

  • Placing & scaling a multi-page PDF in InDesign?

    I need to place a 300+ page PDF that is 8 1/2 x 11 into an InDesign doc that is 5 1/2 x 8 1/2, and have the PDF pages scale proportionately to the smaller size.….can anyone help? In the "Place" command there is no option for this; yes, I can import then scale the pages one at a time but to have to do that 300+ times is simply ridiculous. There is what seems to be a great script here:
    http://indesignsecrets.com/placing-all-the-pages-of-a-pdf-inside-indesign.php/comment-page -3#comment-494840
    however, there is no way I can figure out how to get to the dialog pictured in the article. All I can do is right click on the script itself and tell it to run, but it doesn't bring up that snazzy little dialog box.......Am I missing something? Is there a particular folder inside the Scripts folder where I must place this script? And then is there some specific menu I must go to to bring up that dialog box?
    Many thanks in advance!

    Use the updated version, which you'll find at InDesignSecrets » Blog Archive » Zanelli Releases MultiPageImporter for Importing both PDF and INDD Files
    If you don't see the dialog, odds are that you didn't actually install the script into ID. For that, see How to install scripts in InDesign | InDesignSecrets

  • What plugin do I need to open a PDF in InDesign?

    What plugin do I need to open a PDF in InDesign? I have twice lost my changes in an InDesignfile but I have saved in in PDF form.  I want to open it in InDesign but it says a plugin may be missing.

    You can't OPEN a PDF file in InDesign. This has never been possible.
    You can PLACE a PDF file. A placed PDF is treated as a graphic, you cannot edit it. If you choose Import Options, you can choose which page(s) of the PDF to place.

  • Placing a PDF in InDesign

    Ok. I don't know how else to simplify my explanation so here goes…
    1. So, I have a PDF article which is 8.5" x 11". It mainly contains text.
    2. I want to place this one page PDF in InDesign but it keeps taking out the white space around the text. Meaning it only takes the area that has text on it so it actually comes out as smaller than 8.5" x 11".
    3. How do I maintain the PDF size when importing into InDesign.
    Here's how I want it to look (notice the white space around the text:
    BUT this is how it shows up when placed in InDesign (notice how the white margin disappeared):

    Well, first of all, I'm not the best at finding the right/proper keywords
    when it comes to searching. I searched "place PDF" and got me to the first
    topic you mentioned. I have no patience in going through and reading
    through all the list of results. That's why I like going through FORUM. I
    know I'll get my answer there somehow and in the meantime while waiting
    for someone to respond I am productive with other jobs. That's all.
    Also, I do see that at the bottom is the "Related Information" (I have
    CS3). But I don't think I would necessarily go to "Import options for
    graphics" link to get my answer in PDF. But that's just me.
    Bernice de Guzman-Wilson
    CDG Marcom, Bio-Rad Laboratories
    510.741.4670
    Bob Bringhurst - Adobe <[email protected]>
    06/19/2009 11:02 PM
    Please respond to
    [email protected]
    To
    Bernice Wilson <[email protected]>
    cc
    Subject
    Placing a PDF in InDesign
    What did you search for in Help? I can edit text or add keywords to
    improve the search experience. I think one problem is that "import pdf"
    jumps to the
    http://help.adobe.com/en_US/InDesign/6.0/WSa285fff53dea4f8617383751001ea8cb3f-6bd7a.html
    topic, but the information on cropping is in the
    http://help.adobe.com/en_US/InDesign/6.0/WSBAC794A2-274A-466f-8254-11FB23B86A5Fa.html#WSa2 85fff53dea4f8617383751001ea8cb3f-6bbfa
    topic.

Maybe you are looking for