InDesign Book Project...some images/graphics not appearing in print-ready PDF

Some images/graphics not appearing in print-ready PDF. Why? and how to fix.
The images are linked.

That didn't work, but i copied images from other parts of my document that did work and pasted/resized to replace images that didn't import and that seemed to work.
still wish i could figure out why it happens in the first place so i don't have to do this other process.

Similar Messages

  • I'm attempting to create a pdf from InDesign and the Illustrator image does not appear properly.

    I'm attempting to create a pdf from InDesign and the Illustrator logo does not appear properly. The logo has a light blue color background with a black to white gradiant over it with a multiply designation set at 100%.  I flattened the logo in illustrator before importing into InDesign. When the pdf is created, the blue background of the logo drops out and the only thing showing is the graduated screen of black. PLEASE HELP!!!!!!

    Thanks for your reply Peter,
    I'm on Mac OSX (10.5.8) using Acrobat 7 Professional and Acrobat 
    Reader 9 to view the pdf. I created it by exporting. Attached is a 
    screen capture of the letterhead. Since I posted, I sent a test pdf to 
    my partner's computer eventhough it didn't look right on my system and 
    she said it looked fine to her. I've restarted my computer and tried 
    again and still get the same results.
    Thanks for your help,
    Pat Boullion
    Boullion Graphics
    281 444-5749
    Fax: 281 444-6507
    CONFIDENTIALITY NOTICE
    The information in this email may be confidential and/or privileged. 
    This email is intended to be reviewed by only the individual or 
    organization named above.
    If you are not the intended recipient or an authorized representative 
    of the intended recipient, you are hereby notified that any review, 
    dissemination or copying of this email and its attachments, if any, or 
    the information contained herein is prohibited. If you have received 
    this email in error, please immediately notify the sender by return 
    email and delete this email from your system.

  • Some images are not appeared  on the JButton

    Hi all
    I want to appear an ImageIcon on my JButton
    Some images are appeared on the button when run the code,
    but some images are not and the button appeared as a default
    button why ?
    the problem in my code in this statement
    JButton   merc = new JButton (new ImageIcon(" door.jpg " ));Thanks in advance.

    I suggest that you break down your statements even further to see where the problem is.
    So if this the problem is on this line:
    JButton   merc = new JButton (new ImageIcon("door.jpg" )); //string corrected?try to break it up a bit like so:
    JButton merc = new JButton();
    File imageFile = new File("door.jpg");
    if (imageFile.exists())
       ImageIcon icon = new ImageIcon(imageFile);
       if (icon != null)
          merc.setIcon(icon);
       else
          System.out.println("icon == null");
    else
       System.out.println("image file doesn't exist");
    }

  • How to take high quality Image taken on 5D to print ready PDF with 300 dpi, without huge filesize

    I did a Photoshoot for some dancers who need some images for print.
    How do i save these images so that they are A, print ready pdf's. and B, Emailable.
    The goal is to get these images onto the page of a paper/magazine.
    not full size but i guess they will be a put in a box.
    any help appreciated.

    How do i save these images so that they are A, print ready pdf's.
    Ask the magazine editors for exact specifications.
    and B, Emailable.
    That's why people use Dropbox.
    Mylenium

  • Some images do not appear in Nokia browser. 5630, ...

    Hi 2 all,
    I've got a problem with some images that do not showing up in Nokia browser. This is a major problem that randomly occurs with different Nokia handsets.
    Please check the .html page in the attachment.
    If you open the page in PC browser, you'll see "border" image, but if it's opened on Nokia 5630  (or E71, N95) page is blank.
    It would be great if you could suggest any workaround for this.
    Nokia 5630
    OS v. 012.020
    Custom v. 012.020.C04.01
    Thanks in advance
    Attachments:
    page.zip ‏16 KB

    Sorry, I didn't make myself clear.  I'm using a new Wordpress theme that is meant to be responsive.  The large image is for a header, than you scroll down to see the rest, one by one.  Some one the pages work OK on my iPad, typically the old ones where the maximum image size was 500 x 500.  It's the new pages and those I've updated that are causing the problem.  On the iPad the large image loads, then a couple of the small ones become visible as I scroll down, but then darkness (rather like my knowledge level).
    Being new to IOS and iPads, I'm trying to work out whether I should be looking here, or amongst the Wordpress stuff for a solution.
    Here's the website with its new theme: http://www.new-zealand-pictures.com/

  • Some fonts do not appear in InDesign

    Some fonts do not appear in InDesign although they can be used in Word, Pagemaker and show in Adobe Typemanager.

    Can you name one?
    These are the most common causes of people complaining "My fonts don't appear":
    (a) Smart name sorting. "New Century Schoolbook" sorts under "C", not "N". "Adobe Garamond" sorts under "G". (I call this 'smart' sorting because apparently it isn't the same as, ehm, dumb sorting. However, I've never read a good description of its sort parameters.)
    (b) Word and PageMaker (but not ATM) allow the use of fake fonts: bold, italics and bold+italics are produced by horribly deforming your base font. If you want a bold font in InDesign, use the designed one. If there isn't one designed ... the designer probably had good reasons not to make one. (It's still possible to create faux-bold and faux-italics in InDesign but the program leaves that decision to you).
    (c) Smart Script sorting. InDesign groups its fonts per supported script. Latin fonts are at the top (a slightly self-centric choice), then come groups of fonts for Hebrew, Arabic, Thai, Chinese, Japanese, etc. etc. A font like Gisha contains Hebrew characters and thus appears in the Hebrew group.
    (d) More than one font file with the same font name (internally). ID gets mightily confuzed if it encounters a file "times.ttf", font name "Times Roman", in one folder, and "tr_____.pfb", font name "Times Roman", in another folder. You can't really blaim it, though.

  • Image does not appear in applet.

    I am reading the book, Teach Yourself Java in 21 Days.
    There is an example in Ch.11 that shows how to load an image into the applet.
    I have tried to use the code provided as is along with an image as defined in the code. I have also uploaded the html, class and image to a folder on the web. Unfortunately, the image does not appear in the applet. The image does have an image that I created using ms paint.
    Here is the code I am currently using from the book:
    import java.awt.Graphics;
    import java.awt.Image;
    public class LadyBug2 extends java.applet.Applet {
         Image bugimg;
         public void init() {
             bugimg = getImage(getCodeBase(),
                 "ladybug.gif");
         public void paint(Graphics g) {
             int iwidth = bugimg.getWidth(this);
             int iheight = bugimg.getHeight(this);
             int xpos = 10;
             // 25 %
            g.drawImage(bugimg, xpos, 10,
                iwidth / 4, iheight / 4, this);
             // 50 %
             xpos += (iwidth / 4) + 10;
             g.drawImage(bugimg, xpos , 10,
                  iwidth / 2, iheight / 2, this);
             // 100%
             xpos += (iwidth / 2) + 10;
             g.drawImage(bugimg, xpos, 10, this);
             // 150% x, 25% y
             g.drawImage(bugimg, 10, iheight + 30,
                 (int)(iwidth * 1.5), iheight / 4, this);
    }I tried placing the image in an images folder and I also tried changing the code to getImage(getDocumentBase(), "ladybug.gif")
    as well as tried getImage(getCodeBase(), "ladybug.gif") in order to try and grab the image from the same directory as the class file and the html file.
    The image file's name is: ladybug.gif
    The code in the html file:
    <HTML>
    <HEAD>
    <TITLE>Lady Bug</TITLE>
    </HEAD>
    <BODY>
    <P>
    <APPLET CODE="LadyBug2.class" WIDTH=1024 HEIGHT=500>
    </APPLET>
    </BODY>
    </HTML>
    I have gotten previous applet examples from the book to work. One of them did have an error in the author's code which I fortunately was able to overcome. This time, I am afraid, the error eludes me.
    Thanks in advance.
    I do see that there is no start/stop/run in this version, but I believe this should still work because of the init. I am guessing that maybe the problem lies somewhere in there.
    Message was edited by:
    gnikollaj

    According to the javadoc:
    getImage
    public Image getImage(URL url,
    String name)Returns an Image object that can then be painted on the screen. The url argument must specify an absolute URL. The name argument is a specifier that is relative to the url argument.
    This method always returns immediately, whether or not the image exists. When this applet attempts to draw the image on the screen, the data will be loaded. The graphics primitives that draw the image will incrementally paint on the screen.
    Parameters:
    url - an absolute URL giving the base location of the image.
    name - the location of the image, relative to the url argument.
    Returns:
    the image at the specified URL.
    I am confused as to how to use the name after the url.
    Should it read something like:
    bugimg = getImage("http://g.jtrusty.com/JavaApplet/", "LadyBug.gif");
    EDIT: I still get the same error, cannot find symbol at getImage.
    Message was edited by:
    gnikollaj

  • SVG image does not appear in mobile version but does in desktop version

    Hi,
    I am new to using Muse and have created only one site before in Muse. I have taken screenshots to show the problem I am having.
    I have used Illustrator to create the following logo image that I save out as an SVG file:
    As you've probably guessed, I have used clipping mask to insert the marbly purple image into the shapes and text (this may be relevant to the problem, I don't know).
    I then save it out as an SVG with the following details as advised by Adobe:
    Then moving into Muse, I File > Place the SVG file. 'Unable to generate thumbnail' comes up in both desktop and phone versions:
    Regardless, I uploaded to FTP post to my website. While the SVG appears perfectly on my desktop browser, it does not show at all on my phone browser:
    This is not only happening on my phone, I have visited the same website on multiple phone devices and still the SVG image does not appear. Any ideas why this is happening?
    Have I totally missed something about file formats for mobile browser versions in Muse?
    Also- in illustrator, I saved the SVG logo for the mobile version as a SMALLER SVG than the one I saved for the desktop version.
    Thanks

    Use a PNG file. I see nothing in your logo that would warrant using anything else. You're not scaling it, there is no interaction and all you are doing is masking out some data that is pixels already. Pardon me, but using an SVG makes no sense at all. Beyond that one would need to see the file, but my guess would be that the "responsive" setting once again embeds some garbage data. Wouldn't be the first time...
    Mylenium

  • About Help image does not appear

    RoboHelp X5.2 Webhelp output
    A logo created as a jpg to be used as an About Help button
    will only appear when compiled on my hard drive.
    I got rid of the powered by Robohelp button and created a
    company image in jpg format for the About Help button.
    In my project I double-clicked on the skin, and then the
    About Button, selected the jpg for the About Button image, selected
    a gif to use in the About Help dialog box, added company
    information, company name, etc.
    Part of skin code ----------------
    <toolbaritem mode="Logo Mode" type="built-in-logo"
    id="7">
    <name>About</name>
    <image>selected:napa_logo_blue.jpg?</image>
    I compiled to my local drive. Everything works. The jpg logo
    appears on the top right-hand side, and when you click on it, the
    About Help dialog box opens with the gif image and other
    information.
    However, the development team compiled the help along with
    the application to one of their test boxes. The jpg image does not
    appear. Instead, a small white box with a red x and the words About
    Help appears. When you click on this the About Help dialog box
    opens with all the correct information including the gif image.
    Both images reside in the skin folder on my hard drive. When
    I compile the project they reside in the main folder with all the
    htm files and js files.
    Not sure how to resolve this.
    DM

    I am also having this problem. I've just converted a project
    from RH X5 to RH v7. In X5 the .gif file attached to the About
    button worked fine. In RH 7 nothing appears. I've tried adding the
    .gif to the Baggage files but it's still broken. Any other
    suggestions?

  • LR 4 - image does not appear in Preview and will not print`

    The selected image appears on the main/center panel but not in the preview screen.  Printing results in a white sheet of paper with no image at all.  The image has been updated to LR 4 - but made no difference.  I've served help and the forums (where i saw mention of similar problems, but no comments or guidance on the problem).  What am I doing wrong?

    The problem began with the installation of LR4. I print directly from LR4 to my HPZ3100. I routinely select "print preview" in the print dialogue box. Now the first print I see the preview and then it prints. If I select a second print job and use the "print preview" the print preview screen comes up blank and never loads. If I try to delete the print job, it just never responds (resolves) so I have to turn off the computer and the printer and restart to clear the print job. if I don't use the print preview, it prints just fine (except that I'm not able to check what's about to be printed). Thanks for any thoughts you have on this.
    Date: Tue, 10 Jul 2012 16:01:47 -0600
    From: [email protected]
    To: [email protected]
    Subject: LR 4 - image does not appear in Preview and will not print`
        Re: LR 4 - image does not appear in Preview and will not print`
        created by Brett N in Photoshop Lightroom - View the full discussion
    Bill, if this is only happening some of the time, then we are probably looking at a resource issue. Any pattern in when things won't print? e.g. Certain file type won't but others will? Or is it more of a timing/order thing? e.g. First file prints fine, second does not? VStromee, do no files print for you? Or is it like Bill and sometimes the print and other times they do not? Did you install any new software recently or have any updates to the OS or any application that has printing capabilities?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4549692#4549692
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4549692#4549692. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Lightroom by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Folio Producer Thumbnail List Thumbnail image does not appear.

    Folio Producer Site > Folio Producer Editor
    Thumbnail view from the list,
    Thumbnail image does not appear.
    Why is that?

    HTML articles and InDesign articles that use JPEG or PNG image format display thumbnail images in the Folio Producer Editor. However, no thumbnails appear in articles that use the PDF image format.
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60-12e05bfc12f6c86d767-7 ffe.html

  • Poster image does not appear in IE

    I am having another problem with the poster image feature.  In IE7 & 8, the poster image does not appear at all when the player is first loaded. If the page is cached and loaded, the poster image appears fine.
     I think this is a bug, but can anyone confirm seeing this or fixing it? 
    Thanks!

    According to the javadoc:
    getImage
    public Image getImage(URL url,
    String name)Returns an Image object that can then be painted on the screen. The url argument must specify an absolute URL. The name argument is a specifier that is relative to the url argument.
    This method always returns immediately, whether or not the image exists. When this applet attempts to draw the image on the screen, the data will be loaded. The graphics primitives that draw the image will incrementally paint on the screen.
    Parameters:
    url - an absolute URL giving the base location of the image.
    name - the location of the image, relative to the url argument.
    Returns:
    the image at the specified URL.
    I am confused as to how to use the name after the url.
    Should it read something like:
    bugimg = getImage("http://g.jtrusty.com/JavaApplet/", "LadyBug.gif");
    EDIT: I still get the same error, cannot find symbol at getImage.
    Message was edited by:
    gnikollaj

  • IPhoto images will not appear in Media browser

    After updating my iLife apps (iLife '09), iPhoto images no longer appear in my media browser. In iMovie, it just says "Loading iPhoto Images", but never does. I am using a Macbook with OS X 10.5.8 and 2 GB memory. Images will not appear in iDVD either. Anyone have any thoughts?

    Do you still have the old library? Rebuilding it with iPhoto Library Manager would preserve most of your work.
    This will creates a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
    Regards
    TD

  • Some images do not display on E-Bay with FF 11

    Running Vista. had no problems with E-bay using FF 10 or lower. some images will not display, and when a image that does show in the category, when selected, it does not display. I am running FF11 on my xp machine with no problems.
    every thing on E-bay works with IE

    It's not recommended to go back to Firefox 10 due to known security vulnerabilities. It's still available if there's no other solution.
    Another standard diagnostic step is to try Firefox's Safe Mode to see whether it is caused by a custom setting or add-on.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [https://support.mozilla.com/en-US/kb/Backing+up+your+information Backing up your information]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in [http://support.mozilla.com/kb/Safe+Mode Safe Mode] using
    Help > Restart with Add-ons Disabled
    In the Safe Mode dialog, do not check any boxes, just click "Continue in Safe Mode."
    If the images load correctly, this points to an add-on or custom setting or perhaps a saved password as the problem. A few things to work through.
    If the site doesn't load correctly, we would have to consider other factors.
    Any luck?

  • Downloaded audio book on my iphone does not appear in itunes library and i cannot update iOS without transfering it to library

    Downloaded audio book to my iphone does not appear in my itunes library and i cannot update iOS without transfering it to library

    You should be able to copy it over to your computer's iTunes via File > Devices > Transfer Purchases.
    Audiobooks are a one-time only download from the store, so you may want to take a backup copy of it when you've copied it over to your computer

Maybe you are looking for

  • How to change page size by default

    Hi, I'm sorry if this has been aswered before - I looked for a solution but couldn't find one. The problem is I use Pages in French on a localized French Canadian G5. By default, new documents in Pages are set to A4 format, a eurpoean standard. I wan

  • No menu items

    Hi, I just installed the latest OSX software updates, and since restarting none of the menus are in the menus bar, apart from my insomniaX icon and the spotlight search tab. When ever I check the 'show date and time in menu bar' in system pref for ex

  • Itune dejo de funcionar la entrar al Itunes Store

    Desde hace unos días y luego de instalar la última actualización de Itunes 11.0.5.5, cuando voy a ingresar al Itunes Store me aprece una ventana del Windows 8 que me dice Itunes dejó de funcionar y se cierra. La biblioteca y la reproducción de los co

  • Due Date Calc

    Hi Experts, I am an ABAPer. I am doing an interface to block/unblock a customer based on his credit limit (KNKK table) for a specific Co Code and block him on KNB1-SPERR. My Requiremnt : I need to calculate due date for a customer whose payment is in

  • Quote does not print correct price

    I created a price quote in VA21 for material XXXXXXX, entered the price in the sales tab & I've a price scale(VK12) for the same material under YPR0, when I print the quote the price I get is from the price scale(VK12). I'd like to print the price fr