InDesign CS6 gives CMYK/RGB values when creating PDF.

This results in a different white colors on the pdf - InDesign CS5 doesn't do this. Can someone inform me how this can be solved easily?

Well during export to pdf the white balance of some pictures changes. This results in a pdf where white backgrounds of product shots become a different color. I clearly see it has something to do with the white balance but don't know what - tried already to export it as RGB of CMYK profile but the not all images of the same color coding (mix of RGB and CMYK saved visuals are used in one document).
When I save the files as idml and open it in CS5, the problem is gone. So since the switch to CS6, I have this issue and as you might imagine, this is not very pratical.

Similar Messages

  • Indesign CS6 8.0.1. crashes when exporting a PDF

    I am having a problem with Indesign CS6 8.0.1. When exporting a PDF Indesign crashes everytime. Here is the crash report http://pastebin.com/qYu9cWwP
    I am on a mac running 10.7.5
    This happens with every file I try to export every time.

    I don't know what it means, but the crashed thread is making the same call: 511 com.adobe.InDesign.Print            0x17bf6703 GetPlugIn + 497427 more than 500 times. Are you exporting to PDF, or printing?

  • [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

  • 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.

  • 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

  • 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.

  • RGB values when scaling

    Hello,
    My problem is - I have an image displayed on a label
    JLabel label = new JLabel(new ImageIcon(shapeIcon));
    And I am retrieving the pixel value through a mouse event
    int positionX = mouseEvent.getX();
    int positionY = mouseEvent.getY();
    int pixelSource = bufferedShape.getRGB(positionX, positionY);
    This works fine until I scale the image as follows on the display
    JLabel label = new JLabel(new ImageIcon(shapeIcon.getScaledInstance(200, 200, 0)));
    Now when I click on the image I get an error thrown at this line
    int pixelSource = bufferedShape.getRGB(positionX, positionY);
    Any ideas.
    Thanks,
    Enda

    OK sorry.
    Here is the part of the UI code
    public void displayShape()
    //Image location
    buildConstraints(constraints,0,0,1,0,100,100);
    constraints.fill = GridBagConstraints.NONE;
    constraints.anchor = GridBagConstraints.NORTHWEST;
    constraints.insets = new Insets(6,6,6,6);
    JLabel label = new JLabel(new ImageIcon(shapeIcon.getScaledInstance(200, 200, 0)));
    // label.setIcon(new ImageIcon(shapeIcon));
    lm.setConstraints(label, constraints);
    pane.add(label);
    And here is the Mouse listener
    class LabelMouseListener extends MouseAdapter
    public void mouseClicked(MouseEvent mouseEvent)
    //Get the X and Y position of the Mouse
    int positionX = mouseEvent.getX();
    int positionY = mouseEvent.getY();
    //Get the RGB value of the pixel at x,y on the BufferedImage
    int pixelSource = bufferedShape.getRGB(positionX, positionY);
    // Create the Color Object
    Color colour = new Color(pixelSource);
    // Get the Red values (only need red value as it is a B & W image)
    int red = colour.getRed();
    if (colour.getRed() == 0)
    label2.setText("Black Pixel value 0 at ("
    positionX ", " positionY ")");
    else
    label2.setText("White Pixel value 255 at ("
    positionX ", " positionY ")");
    And the error
    Exception occurred during event dispatching:
    java.lang.ArrayIndexOutOfBoundsException
         at sun.awt.image.IntegerInterleavedRaster.getDataElements(IntegerInterleavedRaster.java:202)
         at java.awt.image.BufferedImage.getRGB(BufferedImage.java:763)
         at jamesproject.Shape$LabelMouseListener.mouseClicked(Shape.java:542)
         at java.awt.Component.processMouseEvent(Component.java:3718)
         at java.awt.Component.processEvent(Component.java:3544)
         at java.awt.Container.processEvent(Container.java:1164)
         at java.awt.Component.dispatchEventImpl(Component.java:2593)
         at java.awt.Container.dispatchEventImpl(Container.java:1213)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2230)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
         at java.awt.Container.dispatchEventImpl(Container.java:1200)
         at java.awt.Window.dispatchEventImpl(Window.java:914)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
    THANKS.
    Enda

  • How to get the input values when create shpping cart(FPM_OIF_COMPONENT)?

    We want to remote other applications when create a new SC(neither ordered nor saved).
    We must transport the screen data which entired by users.
    Do you have a methord to get the screen value of SC in the FPM component FPM_OIF_COMPONENT?
    Thank you very much!
    I am looking forward to your reply!

    Solved,use the BADI BBP_DOC_CHANGE_BADI

  • PDF Bookmarks - Change Default Width When Creating PDF File from InDesign

    When creating a PDF file (from Indesign CS4) I automatically create the PDF bookmarks based on the InDesign document's Table of Contents.
    But by default the width in the bookmarks is always set at "Fit Page".
    Is there a way to change the default to "Fit Width" in Indesign before the PDF is created?
    It's too much trouble to change every bookmark in the PDF after it's created.
    Thanks for any help in advance!

    Thanks, Steve. I have actually previously done what "fogharty" suggests and it does work if I want to set the pages to "fit width" or a variety of other options. However, none of the options is inherit zoom which is what I, and many other from the sound of the thread, need and want. We want to respect our end users--not dictate how they must view our PDFs. Hopefully, Adobe will listen and make this option available soon.

  • System colors do not give correct RGB values

    When using the IMAQ integer to color value function, I get correct RGB values for colors chosen via a color box control  - except if the colors are selected from the “system colors”. Is this supposed to happen? The RGB values for the system "White" is: 0, 0, 9.
    Attachments:
    ScreenShot010.jpg ‏21 KB

    That function does look at the most significant byte. Try wiring the system color to a "Split Number" (numerics "Dat manipulation) to split the I32 to two I16 and then again to get four I8s.
    You will find that the "other" bytes has a "1".
    System colors are special.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Preview changes RGB values when resizing images

    Since I upgraded to snow leopard, preview increases the Red spectrum when resizing images (png). Is this a bug or do I need to change a setting to preserve the original RGB values?

    Figured it out. It seems that when you don't specify the BufferedImage that the operation will write too it changes the type to something it uses for the operation. This still seems like it should be a bug to me, but i got around it by doing this:
    BufferedImage tempIMG = new BufferedImage((int)(srcImg.getWidth()*scale),(int)(srcImg.getHeight()*scale),srcImg.getType());
    op.filter(srcImg, tempIMG);
    return tempIMG.

  • Referencing condition values when creating return order is wrong...

    Hello Experts,
    Lets say I have a billing document that has 3 line items namely material A, B and C.
    Now, I created a return order for material A with 2 separate line items because of different
    storage locations. Now, is there a user-exit that lets my 2nd line item copy the condition values of the
    1st line item of the reference billing document? because they are of the same material(A).
    Currently, we are having problems when creating a return order having multiple line items of the same material
    because the succeeding line items copies the wrong condition values of the referenced billing doc.
    For example:
    Original billing document:
    Material      Discount
    A          100
    B          200
    C          300
    Return Order:
    Material     Discount
    A          100
    A          200
    A          300
    The succeeding line items of my return order must point to the first line item since they are of the
    same material. Hope you can help me guys. Thank you and take care!

    You may need to explore in the copy control definition, especially the pricing type defined. Check if any customized requirements exists for condition which checks w.r.t to the document number instead of reference document number item.

  • 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.

  • Dull, muted colors when creating PDF

    As a signmaker I regularly create PDF files from my signmaking program (FlexiSign) to email to clients for approval. Sometimes it works perfectly and at other times the colors come out totally dull and muted so that there is little similarity to what the finished product will look like.
    I've tried a number of different things to correct this. Have even created eps files to open in Illustrator and then create a pdf but it still comes out differently.
    I downloaded a trial version of PDF Converter Professional by Nuance Corporation to try it out. The colors work perfectly every time with that program but I don't want to buy it since I already own Adobe Acrobat Professional.
    I would imagine there are some settings I need to change to make things mesh but I'm not sure where to begin. Any thoughts?
    Operating system: Windows XP
    Acrobat Version: 6.0 Professional

    OK, George.
    Your comment about Pantone vs RGB, as well as the discussion you provided a link to caused me to try to understand color management. I went over to Lynda.com and went through part of one of the courses there and also looked in the Help documentation in my design program.
    I am relatively uninformed about color management and just kind of try to go with what the program gives me but I see how critical it is. I tried some settings in my design program, which were pretty unsatisfactory. However, what I did find was that if I take the Pantone colors and convert them to RGB before I create the PDF in Acrobat, the colors stay very satisfactorily true to what is seen in the original file. (Again, my aim is to let the client view a reasonable simulation.) I will continue to experiment and see if there is an overall setting I can use rather than doing the manual conversion, but at least you helped me to identify the culprit - namely the inconsistency of the color settings between the 2 programs and the need to use RGB.
    Thank you!
    P.S. One caveat - You say that if I wanted to use Spot Colors it should print fine (even though it doesn't display correctly.) I doubt if this is true because I believe in the conversion process it maintained the values for CMYK and assigned those as values for RGB, which explains why it turned out so dull in the PDF display.

  • White boarders around artboard when creating pdf in CS4

    Hi,
    have been trying to find solution for this issue for 4 hours now and im loosing my mind:)) ... so decided to ask some help from you guys.
    Problem: im trying to create pdf file with black background in Illustrator cs4 and white thin boarders keep appearing to the right and bottom of the page. I have streched the background image so that its bigger than the artboard but white lines are still there when pdf is opened?!? I guess there is extremeley easy solution for this (kind a "you forgot to tick the box from x menu") but i just cant figure out .... so all the help is most wellcome!!!
    Thank you in advance!
    Jimi

    @ Jacob --- you're half correct, in that it's a small bug, or smoothing artifact in the Preview application from Apple.
    White boarders go away when you uncheck "Smooth text and line art" in Preview Preferences, under the PDF tab. Since that makes everything very pixelated, I don't recommend keeping that setting on.
    Instead, consider installing Adobe Reader or using Acrobat Pro, where incidentily, the very same phenomonen can occur. In Acrobat Pro, you can also toggle "Smoothing" in the Preferences, Page Display dialog.
    TIP: Preview works best with RGB PDFs, whereas if you are doing print production work, I would suggest using either Acrobat Reader, or Pro which is my preference because of the soft-proofing and print production tools.

Maybe you are looking for

  • Windows 7 will recognize one ipod but not the other?

    I previously owned a 2nd gen iTouch, which would not be recognized by Windows or iTunes. The funny thing is, iTunes would recognize a 4th generation ipod nano that I also had. So I thought there was something wrong with my iTouch, so I went and bough

  • Image rotator from database

    I want to display a couple of rows that will sow about 4 images per row. But images need to be rotated every time the page is refreshed, and the images come from links on the database. Any help will be appreciated. Thanks

  • The usage question of inputComboboxListOfValues

    1.Can I disable the popup search on inputComboboxListOfValues ? 2.I set the items attribute according to Tag reference,but it seems not work. I add items="#{backingBeanScope.backing_LOVSuggestion.allItems}" the List contains javax.faces.model.SelectI

  • Working with "tabbed navigation list" widths

    I have created a list of type "tabbed navigation list" and added it to a page. I modified the "template" for the page adding a bottom border to the table for the tabbed navigation list. http://htmldb.oracle.com/pls/otn/f?p=36420:1: How would I contro

  • Protect a Visio 2010 Drawing

    Is there any way to password protect a Visio 2010 drawing so that unauthorized users cannot make changes?