Images Disappear when creating PDF

When creating a PDF out of InDesign we are having issues with images diappearig when Postscript Overprint / Overprint Preview is on.  When printing images also do not show up. When viewing in Reader Images do not show up.  Has anyone run into this issue, we are running CS3 & CS4.  Any help will be appreciated

Most likely cause is that the images are set to non-printing in some way, either inidvidually through the Atrributes Panel, or they're on a layer that is set to non-printing.

Similar Messages

  • Corrupt image formatting when creating pdf from embedded visio image in MS word

    Hello, Using Adobe Acrobat 9 standard and trying to create a PDF file from an MS word (version 2003) document.  PDF file created is fine except for an image (embedded visio diagram imported into word).  When created in PDF, the image is missing many of the diagram labels, and other text boxes are in the wrong font and wrong location.  I don't know if it's my Adobe Acrobat or MS Word settings that need to be updated.
    thanks, NB

    Dear fellows,
    the problem is still present.  My system:Windows 7 32-Bit Prof, MS Office 2010 Prof, Acrobat X Pro 10.1.1, Vision 2010 Prof, all updates installed.
    Problem #1: Even the latest Acrobat X 10.1.1 version causes Visio 2010 to start with error messages, origin: the Acrobat Add-In.  Therefore I de-activated the Acrobat Add-In, again, as in the past.
    As I design grafics with Visio 2010, I mark them in the active Visio window, copy the marked parts and then insert them into my Word-Document.  So far, so good and as I want it.
    The (still present) problem: I can produce a PDF file using the "save as Adobe PDF", but the Visio drawing is incomplete and corrupt.  E.g. arrows as line endings have disappeared.
    PS: But using Adobes PDF printer sets the embedded Visio drawing correctly!  But using the printer one looses some features of the "save as Adobe PDF" command.
    Well, probably one day ...
    Regards,
    Rückenlehne.

  • Report image shrinks when creating PDF

    My company is using a PPM tool (Innotas) to generate a report that includes a pie chart.  Recently,
    for some users, the pie chart suddenly began shrinking when saved to a PDF file -- so small that it is useless.  The users in question have the same Acrobat and Distiller versions as those for whom the pie chart is still printing correctly, and we are unaware of any other changes to any of the software involved that might explain the issue.  I have searched this forum and found a couple of similar issues, but unfortunately neither of them were ever resolved.  Thoughts?  Thanks.

    Dear fellows,
    the problem is still present.  My system:Windows 7 32-Bit Prof, MS Office 2010 Prof, Acrobat X Pro 10.1.1, Vision 2010 Prof, all updates installed.
    Problem #1: Even the latest Acrobat X 10.1.1 version causes Visio 2010 to start with error messages, origin: the Acrobat Add-In.  Therefore I de-activated the Acrobat Add-In, again, as in the past.
    As I design grafics with Visio 2010, I mark them in the active Visio window, copy the marked parts and then insert them into my Word-Document.  So far, so good and as I want it.
    The (still present) problem: I can produce a PDF file using the "save as Adobe PDF", but the Visio drawing is incomplete and corrupt.  E.g. arrows as line endings have disappeared.
    PS: But using Adobes PDF printer sets the embedded Visio drawing correctly!  But using the printer one looses some features of the "save as Adobe PDF" command.
    Well, probably one day ...
    Regards,
    Rückenlehne.

  • Ability to turn headings into graphics when creating PDFs

    I would like the ability to convert the text headings and footers into graphical images whenever I create PDFs.
    My reason for this wish is that when you search for a text string in a PDF, it is very annoying when you keep getting hits that occur in headers or footers.
    Thanks,
    Susan

    Susan,
    It would be much easier to convert the header and footer into a graphic
    yourself. That way you could determine the type of graphic that would be
    appropriate for your application---high def raster image, outline text, etc.
    Mike

  • How do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it when you just play a slideshow.

    how do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it with presets when you just play a slideshow, but i don't see an option to randomly shuffle the slide order when you create a new slideshow.  i know you can sort it by different fields, but i want it to be random.  thanks.

    If you want to rearrange images in random order you can try an AppleScript:
    retrieve a list of selected images from Aperture
    shuffe the list properly
    create an album in Aperture and add the images from the list to the album (make sure that the album set to be orederd manually)
    Here  is a sample script that shuffles the selected images and displays them in random order in Full Screen Mode:
    on removeItem(ims, i)
      -- remove the item at position "i" from a list ims
              if ims is {} then return {}
              if (length of ims is 1) then return {}
              if i < 2 then return rest of ims
              if (i = length of ims) then return (items 1 thru (i - 1) of ims)
              if i > (length of ims) then return ims -- should be error?
              return (items 1 thru (i - 1) of ims) & (items (i + 1) thru (length of ims) of ims)
    end removeItem
    on shuffle_items(ims)
      -- shuffle the items of the list "ims" randomly
              local numitems, ims_shuffled, nextrest, nextpick, i
              set numitems to length of ims
              if length of ims < 2 then return ims
              set ims_shuffled to {}
              set nextrest to ims
              repeat until nextrest is {}
                        set i to (random number (numitems - 1)) + 1
                        set nextpick to item i of nextrest
                        set beginning of ims_shuffled to nextpick
                        set numitems to numitems - 1
                        set nextrest to removeItem(nextrest, i)
              end repeat
              return ims_shuffled
    end shuffle_items
    on shuffleIms()
      -- retrieve the selected images from Aperture
      -- and display them in random order in full screen mode
              local imageSel, shuffled, i
              tell application "Aperture"
      activate
                        set imageSel to (get selection)
                        set shuffled to my shuffle_items(imageSel)
                        set fullscreen to true
                        if imageSel is {} then error "Please select some images."
                        repeat with i from 1 to count of shuffled
                                  reveal {item i of shuffled}
      delay 3 -- chnage that to the time you want
                        end repeat
                        set fullscreen to false
                        return shuffled
              end tell
    end shuffleIms
    shuffleIms()
    Some more code snippets to go from here:
    To create an album:
                        tell library 1
                                  if not (exists album "shuffledAlbum") then
      make new album with properties {name:"shuffledAlbum", image version:shuffled}
                                  end if
                        end tell
    And to add the images from the shuffled list to the album:
                        repeat with i from 1 to count of shuffled
                                  duplicate item i of shuffled to album "shuffledAlbum"
                        end repeat
    Regards
    Léonie

  • [AS][INDCC] How to set Color Conversion field to No Color Conversion when creating PDF Export preset

    How can i set Color Conversion field in Export to PDF dialog to No Color Conversion when creating PDF Export preset? i have done a bit of searching and have found where it has been recommended to set effective pdf destination profile to use no profile but it doesn't seem to be producting the expected results.

    Yes, it seems that i had to make the change after creation, not while creating the preset. thank you.
    tell application "Adobe InDesign CC"
         set newPreset to make new PDF export preset with properties ¬
              {name:"preset name", standards compliance:none, acrobat compatibility:acrobat 7}
         tell newPreset to set PDF color space to unchanged color space
    end tell

  • Acrobat distiller keeps on quitting when creating pdf

    Hi there, my Acrobat distiller 10 in OS X Mountain Lion keeps on quitting when creating pdf. Please help.

    Hello,
    1. Please try updating the Acrobat to 10.1.10 and then check the issue.
    2. Go to Settings -> Font Locations. You'll see a list of sources that Distiller gets its fonts from. Make sure that the paths actually exist, delete them if they don't.
    3. Try with different joboptions.
    Regards,
    Anoop

  • Album images disappear when I transfer music to my iphone

    Hello
    Album images disappear when I transfer music to my iphone. I have my music lying in Apple Lossles format and transfer my music to my iPhone after iTunes har convert the music to AAC format. How do I get ITunes to transfer my music with album images?

    I am so frustrated with my new iPhone 5 that I want to throw it against the wall.  I did the turn in your iPhone 4 for an iPhone 5.  They said to go to itunes and add your music.  Well, I have been trying to do this for the last two days.  I tried to call support but I have to pay an additional $49.99 to actually talk to someone.  I need some one that can actually walk me through the steps.  I read that you have to reset to factory and then go to itunes to get the thing to work.  My question is - will I lose all my pics too?  So what are the steps to reset to factory and then what do I do next (on iTunes).  Please help if you know the answer.  If I can't get my music, I plan to go back and turn in this phone and buy a different non-Apple phone! 

  • In Premiere Pro CC 2014, the image disappears when I apply a mask of an effect. Why?

    In Premiere Pro CC 2014, the image disappears when I apply a mask of an effect. Why?

    Nevermind...
    Fixe:
    projects setting > switch Renderer.
    Thanks

  • Error message: Helvetica Medium outline font missing when creating PDF's

    Error message: Helvetica Medium outline font missing when creating PDF's. Where can I downlaod it and why is it suddenly happening?

    OS? Version of ID?
    This means that either you have an extra Helvetica Medium font installed and it's interfering with ID finding the T1 version, or the T1 version is damaged. I found this really old thread that explains it fairly well: http://www.asadesigner.com/22-indesign/2d812de56777cc90.htm
    The good news is that it's probably only affecting the page information marks.

  • Image disappears when using transform function

    In Photoshop CS6, all of a sudden my image disappears when I try to transform a selection. Why is this happening? It didn't happen before, so maybe I accidently changed some setting, but I have no idea what it could be.

    Determine what make and model GPU you have, then go to the GPU maker's website and download the latest driver and follow their instructions to install it.

  • When creating PDFs from WORD 2010 I cannot get the TOC heading entries as hyperlinks

    When creating PDFs from WORD 2010 I cannot get the TOC heading entries as hyperlinks. I used to be able to do this in WORD 2003. I tried to create a PDF from Acrobat by selecting File > Create PDF >navigate to the WORD file > select three checkboxes >
    Any help with getting the TOC heading entries as hyperlinks?

    Try to do it from Word using the ribbon.

  • Stylized type out of indesign disapers when creating pdf

    stylized type out of indesign disappears when creating pdf

    You need to be more specific.
    Are you viewing in Overprint Preview (you should) in InDesign.
    A screenshot would help this.

  • Why does a grouped image disappear when I ungroup it?

    Why does a grouped image disappear when I ungroup it?

    There are bugs hanging around for version after version after version. Hopefully it gets fixed but nobody knows when or if a bug will get fixed until it is.

  • Images changed to negatives when creating PDF

    I'm using Creative Suite 4, OSX 10.5. I'm finding that on occasion, images in my documents are changed to negatives when I'm creating PDF files.  I can submit more details here, but I thought I'd check quickly to see if there is an obvious answer that I may have missed.
    Thanks,
    John

    Sounds like it might be an inversion caused by Windows RGB to Mac RGB. I have a haxie called Flip4Mac which inverts windows stuff to be displayed on my Mac.

Maybe you are looking for

  • Compare Windows File or Folder Permissions

    Not sure if this is the correct forum, but didn't see one that exactly fit.  We are in the process of updating our ColdFusion Server that runs on our IIS webserver.  We are having Windows authentication issues with IIS.  I want an application that wi

  • Hyperlink to a file on a public drive for shared users?

    It is common for us to email files (mostly Excel, Work, and PDF documents) back and forth between users on our home network.  Our setup is one iMac that has a public folder that two macbook pros add, remove, and edit files on.  Rather than emailing t

  • Cannot open file in Onenote client from within OneNote Web App

    I am facing a peculiar problem with One note. Environment: - SP2013 Enterprise with separate Office Web Apps server I can view/edit onenote files on OneNote web app without any issue but when I click "Open in OneNote" button, I get the error that "on

  • Problem with Date Navigation

    Hi I have a inputfield UI which is bound to a context element of type Date.So at runtime a Calendar like control appears in which I can scroll monthwise. My question is: 1)What control is it ? 2)What should I do to scroll yearwise(with months in it) 

  • HT201303 Unable to redeem my balance  keeps asking for my credit card information

    Help!  I have a balance in my I-tunes account, but when I try to redeem it to purchase a song it asks for my credit account information.  How do I redeem my balance?