Transparency preview - color faded

Hi,
I used PSD images (based on a transparent layer) and placed in a Indesign document. I used to export to PDF without no problems to preview in CS2. But now, when I open the document in Acrobat professional 8 (CS3) the color of the same tranparent images look faded, or pale. If I open the same document in Adobe Reader 7, no problem, colors are gloss and perfect.
Is there a setting that I have to setup to automatically see the right colors?
All my Adobe suite is synchronized for color settings.
Thank you!!

Just wanted to let you know you are not alone. I've been experiencing the same color issues with multi-page CMYK PDFs with transparency created in InDesign CS3 on Acrobat 8 (I'm running the latest version 8.1.2 on 10.4.11).
Any page that has transparency on it has a huge color shift (It almost looks like it has been converted to RGB). Pages without transparent objects print fine. The same PDF in Acrobat 7 will print with the correct colors on both types of pages.
The PDFs were exported from InDesign CS3 with the Transparency Blend Space set to CMYK and the PDF set to "Press Quality." All images in the document were in CMYK. The PDFs were printed on a Xerox Phaser 7400. Same print settings used in both Acrobat 7 & 8.

Similar Messages

  • Problem with adjusting both transparency and color of an object

    I am writing a program where when an object is picked, both it's transparency and color will be altered (the object will become opaque, and its color will turn to a predefined "selected" color), while the previously selected object will return to its original transparency and color. I am able to get this to work, except that objects that were picked two or more picks ago will remain in the selected color, albeit in their original transparency. This problem only seems to occur when transparency is factored in. The picking/color & transparency altering code is as follows.
    public class PickingListener extends MouseAdapter {
         private PickCanvas pickCanvas;
         private TextDisplay overlay;
         private Primitive p;
         private Primitive lastP;
         private ColoringAttributes origColor;
         private TransparencyAttributes origTransparency;
         public PickingListener(PickCanvas pickCanvasArg, TextDisplay overlayArg) {
              pickCanvas = pickCanvasArg;
              overlay = overlayArg;
         public void mouseClicked(MouseEvent e) {
              pickCanvas.setShapeLocation(e);
              PickResult result = pickCanvas.pickClosest();
              if (result == null) {
                   System.out.println("Nothing picked");
              } else {
                   p = (Primitive) result.getNode(PickResult.PRIMITIVE);
                   if (p != null) {
                        setSelectedColor();
                        overlay.setPickedBarInfo((BarInformation) p.getUserData());
                   else
                        System.out.println("null");
         private void setSelectedColor() {
              ColoringAttributes barCA = new ColoringAttributes();
              TransparencyAttributes barTransp = new TransparencyAttributes(TransparencyAttributes.NICEST, 0.0f);
              barCA.setColor(ColorConstants.SELECTED);
              if (lastP != null) {
                   lastP.getAppearance().setColoringAttributes(origColor);
                   lastP.getAppearance().setTransparencyAttributes(origTransparency);
              origColor = p.getAppearance().getColoringAttributes();
              origTransparency = p.getAppearance().getTransparencyAttributes();
              p.getAppearance().setColoringAttributes(barCA);
              p.getAppearance().setTransparencyAttributes(barTransp);
              lastP = p;
    }Capabilities to alter the primitive's color and transparency are all set.
         barAppearance.setCapability(Appearance.ALLOW_COLORING_ATTRIBUTES_READ);
              barAppearance.setCapability(Appearance.ALLOW_COLORING_ATTRIBUTES_WRITE);
              barAppearance.setCapability(Appearance.ALLOW_TRANSPARENCY_ATTRIBUTES_WRITE);          barAppearance.setCapability(Appearance.ALLOW_TRANSPARENCY_ATTRIBUTES_READ);
    ColoringAttributes barCA = new ColoringAttributes();
    barCA.setCapability(ColoringAttributes.ALLOW_COLOR_WRITE);
    barCA.setCapability(ColoringAttributes.ALLOW_COLOR_READ);)
    Any insight as to why this would occur would be greatly appreciated.
    -Adrian Benton

    A Behavior is the preferred way to make changes in a scenegraph. Here is an example from a previous post that changes the appearance of a shape when it collides with another shape.
    The javadoc for javax.media.j3d.Behavior appears to refer to the issue you have.
    Transparencies are confusing, different display adapters deal with them differently. Suggest you search the forum at
    http://forums.java.net/jive/forum.jspa?forumID=70
    for more detailed information.
    regards
    class CollisionDetector extends Behavior {
      private static final Color3f highlightColor = new Color3f(0.0f, 1.0f, 0.0f);
      private static final ColoringAttributes highlight = new ColoringAttributes(
          highlightColor, ColoringAttributes.SHADE_GOURAUD);
      private boolean inCollision = false;
      private Shape3D shape;
      private ColoringAttributes shapeColoring;
      private Appearance shapeAppearance;
      private WakeupOnCollisionEntry wEnter;
      private WakeupOnCollisionExit wExit;
      public CollisionDetector(Shape3D s) {
        shape = s;
        shapeAppearance = shape.getAppearance();
        shapeColoring = shapeAppearance.getColoringAttributes();
        inCollision = false;
      public void initialize() {
        wEnter = new WakeupOnCollisionEntry(shape);
        wExit = new WakeupOnCollisionExit(shape);
        wakeupOn(wEnter);
      public void processStimulus(Enumeration criteria) {
        inCollision = !inCollision;
        if (inCollision) {
          shapeAppearance.setColoringAttributes(highlight);
          wakeupOn(wExit);
        } else {
          shapeAppearance.setColoringAttributes(shapeColoring);
          wakeupOn(wEnter);
    }

  • How to generate transparent preview of the document?

    Hi all,
    I would like to generate trsansparent preview of an document in PNG file. Normal (not-transparent preview) I am doing by JavaScript like it is described below:
    var myDocument = app.open(File(app.scriptArgs.getValue("documentPath")));
    myDocument.exportFile(ExportFormat.jpg, File(app.scriptArgs.getValue("thumbnailPath")), PDFExportPreset.acrobatCompatibility);
    myDocument.close(SaveOptions.no);
    The result is normal JPG file. But I would like to get a transparent image. How can I do this?
    Thank you for all information!

    Hmm could you give any example of code? According to the scripting reference there is nothing like "ExportFormat.PNG_FORMAT" - I cannot even find this in Google. On official Adobe webpage in the scripting reference I can find:
    Name Description Value
    TAGGED_TEXT
    Exports to a tagged text file with a TXT extension.
    1416066168  =                 'Tgtx'
    PDF_TYPE
    Exports to PDF format.
    1952403524  =                 't_PD'
    EPS_TYPE
    Exports to EPS format.
    1952400720  =                 't_EP'
    RTF
    Exports to rich text format (RTF).
    1381254688  =                 'RTF '
    SVG
    Exports to SVG format.
    1398163232  =                 'SVG '
    SVG_COMPRESSED
    Exports to SVGZ format.
    1398163267  =                 'SVGC'
    TEXT_TYPE
    Exports to text (TXT) format.
    1952412773  =                 't_te'
    XML
    Exports the document's tagged content to XML.
    1481460768  =                 'XML '
    JPG
    Exports to JPEG format.
    1246775072  =                 'JPG '
    INDESIGN_INTERCHANGE
    Exports to InDesign Interchange (INX) format.
    1229871136  =                 'INX '
    INDESIGN_SNIPPET
    Exports to InDesign Snippet (INDS) format.
    1936617588  =                 'snpt'
    INCOPY_CS_DOCUMENT
    Exports to InCopy CS document (INCD) format.
    1702126436  =                 'etcd'
    INCOPY_DOCUMENT
    Exports to InCopy document (INCX) format.
    1702126456  =                 'etcx'
    and this is all (http://www.indesignscriptingreference.com/CS3/JavaScript/ExportFormat-enum.htm). When I am trying to use the code on a group of objects, it is failing. The code:
    var myDocument = app.documents.add();
    myDocument.pages.item(0).place(File(app.scriptArgs.getValue("snippetPath")));
    g = myDocument.pages.item(0).groups.add (myDocument.pages.item(0).allPageItems);
    g.exportFile(ExportFormat.PNG_FORMAT, File(app.scriptArgs.getValue("pngThumbnailPath")), PDFExportPreset.acrobatCompatibility);
    myDocument.close(SaveOptions.no);
    And the error:
    Error Number: 55
    Error String: Object does not support the property or method 'PNG_FORMAT'
    Line: 6
    Source: g.exportFile(ExportFormat.PNG_FORMAT, File(app.scriptArgs.getValue("pngThumbnailPath")), PDFExportPreset.acrobatCompatibility);

  • Need transparent background color in Spry Menu Bar

    Tried every possible combination.
    Built a 150x1000 px header in Illustrator with a 20x1000 px rectangle at the bottom for the nav bar, set as a background image in the header within Dreamweaver.
    Can not make a transparent (no color) background within Spry Menu Bar: MenuBar1??
    Also, my first nav is 'Welcome' that <li></li> is about 6-8 px higher then the rest of the nav bar??
    Any help at all would be appreciated, thanks
    optionsclinic.net

    Have you tried changing the value of the Background colour in your CSS:
    ul.MenuBarHorizontal a
        cursor: pointer;
        text-align: center;
        padding-top: 2px;
        padding-bottom: 2px;
        text-decoration: none;
        color: #FFF;
        padding-right: 2px;
        padding-left: 2px;
        display: block;
        background-color: #223F9A;

  • Transparency and color blend space: fail!

    Hi there. I keep trying to export my pdf, to no avail.
    I get an error that pops up that says there is an error with my transparency and color blend space.
    HOWEVER, all my images are set to CMYK (it says so in the links panel) and my transparency blend space is also set to CMYK. I have no errors in my preflight panel. When I ignore the message and continue to export, the image looks completely different and not the way I want it to show up.
    Please let me know how I can fix this error! Thanks so much!

    Document CMYK is the assigned profile in Edit>Assign Profiles.... Working CMYK is Color Settings...>Working Spaces>CMYK. If there's no profile assigned, document and working are the same. So in this case Document CMYK is Coated FOGRA27 and Working CMYK is US Web Coated SWOP—the assigned FOGRA is color managing the document's native CMYK colors not the working US SWOP

  • TS3274 My Ipad has a black background now and everything is color faded after the latest software update?  I restored and reset the Ipad.  How can this be fixed?

    My Ipad has a black background now and everything is color faded after the latest software update?  I restored and reset the Ipad.  How can this be fixed?

    How much data is being backed-up from each Mac?  (see what's shown for Estimated size of full backup under the exclusions box in Time Machine Prefs > Options).
    Is there any other data on your Time Capsule, besides the backups?
    Most likely, there just isn't room.  Time Machine may be trying to do a very large (or full) backup of one or both Macs, and can't.  Since it won't ever delete the most recent backup, there has to be enough room for one full backup plus whatever it's trying to back up now, plus 20% (for workspace).
    Also see #C4 in Time Machine - Troubleshooting for more details.

  • Brush Preview Color

    I am using Photoshop CS4 for Windows. I thought if I check animated zoom in Preferences>General, and select a brush preview color in Preferences>cursor, I could Alt+Click+Drag and not only see my brush changing size, but with color. It's not happening. Is it supposed do do this, or amu I doing it wrong?
    Thanks!

    photofanman wrote:
    Hey thanks John. I think I had tried that but quite as soon as I saw the
    eyedropper. Also, my GL wasn't enabled for some reason.
    If your video card won't support OpenGL, Photoshop will disable it.

  • Colors Faded on Web From Illustrator

    I hope you can help. The graphics I make in Illustrator C3 look clear and great on my monitor, but when uploaded to the web, they are faded by maybe 20%. I'm on a Mac OS 10.4 powerbook laptop and am not an expert with monitor calibration. All I know is that it looks great on my monitor when I'm looking at it in Illustrator, and is faded on the web. Even when I use color safe web colors - faded. Although unrelated, when I design something to be printed digitally (with no PMS ability for digital printing), the colors are consistent with what I see on my monitor, thank goodness.
    I have tried exporting to a bmp and saving from Photoshop C3, but that maybe corrects it a bit. Still not fully sharp and definitely faded. When I save as a svg, and give to my programmer who uses Linux, he can save the file perfectly on some program he has. Also, when I save as a gif, there is a white line around the image. Not the case when it's a svg for my programmer. My Photoshop won't open a svg. I don't know about my color settings, and suspect that they are the problem. If anyone can help...thanks!!

    If you're not having you images printed professionally in publications why are you editing in CMYK.  Displays and inkjet devices are RGB devices CMYK images need be converted when used on these devices. If in every step color management is used  and all devices calibrated well  colors should be quit consistent however color management is not always used and colors will be off  when color management is not done.  Photoshop is color managed is photoshop the only software you're using for your images. No Image viewers, no browsers, no document application etc.
    Also when I save the above image you state is a jpeg Its save as an png file with some Display color profile.  You need yo look into color management and what you useing as your color setting in Photoshop and hd.ow progile mismatches are handle.
    In fact all three image are png file Color mode is RGB 8bit  all have a display color profile all are different in sizes and at least one has different content. All are different yet you claim they are the same.

  • Nokia 6233 Silver Color Fading

    Hi Nokia and members,
    I would like to seek some assistance and advice in regards to my "Stainless Steel" color fading away over the past few months, and this is only occurring to the back of my phone which seems plastic-like compared to the front.
    My phone remains in my pocket most of the time. Everything is still new with really really minor scratches because I treat my phones very well. My last phone was the SGH-E800 which is still working and only with 1 or 2 scratches on it. To have colors fading away is just .... BAD!
    Can anyone help me?
    Should I:
    1) Call up and inquire about it
    I'm not the calling up type but I would do it if i need to
    2) Get Warranty claimed
    If this is possible that is
    3) Bring it back to where I got and ask if they can help
    But I doubt they could/would...
    4) Any other suggestions and advice, Thank you
    Attski
    PS: New to Nokia Discussion Board
    Hello Nokia Lovers and Fans! Woo.......Ye.......LoL

    Its acceptable to accept fair wear and tear dependant on the age of the fone, so you have to expect some sort of asthetical decline.
    However if the fone is somewhat new and you are experiancing this ,then I agree with the previous advice, which is to submit the handset to your local NSC for it to be examined.
    Even keeping it in your pocket and treating it carefully you will still see wear and tear from simply handling it to take calls or text out.
    Cases will slow down this but also tend to make the fone look a little ugly sometimes.
    You will probably find that if the replacemnent is upheld then it will be of the same colour as originally purchased, unless you offer to pay a fee to change it.
    Nokia Lumia 520
     iphone 6 Plus.
    Be happy !!

  • Possible solution to PDFs looking washed out/colors faded

    I decided it would be easier to post this as a new thread in itself than to reply to each and every thread related to this problem.
    I searched the forums to try and find a solution to images looking washed out/colours looking faded after exporting from InDesign CS3 to PDF.
    After looking through the forums I came to the conclusion that the reason the images looked faded was because I have objects with less than 100% opacity in InDesign so if you also have similar settings this may work for you also.
    When exporting from InDesign, under the Output tab I changed the Colour Conversion setting to Convert to Destination.
    Other than that I left everything else as it was.
    This solved my blacks looking washed out, particularly my fonts which had become a sort of grey/brown colour.
    However I noticed that on the pages with images after the pages that had objects with varying transparencies, they still suffered from looking washed out.
    The next step I came across purely by chance: Opening the PDF using Acrobat, under the Advanced tab I chose PDF Optimiser and noticed that the Transparency option in the sidebar hadn't been checked like the Fonts and Image options had.
    So I checked the box and set the Preset to High Resolution and clicked OK.
    It took a minute or so to Save the new file and once I opened it, the richness and contrast of the images had returned, if anything slightly over saturated but a lot better than the washed out/faded appearance of the previous document.
    Hopefully this will work for a few people out there having the same problem.

    I've actually responded a few times to others on the forums regarding images looking washed out/faded in Acrobat 8. I thought I'd pass that information to you here just in case it helps. In those cases, the images that had that appearance either had transparency applied or interacted with it in some way. However, if the file was viewed with the Output Preview dialog open (under Print Production tools) the colors appeared correctly. They would also be correct if the transparency was flattened.  As it turns out, there was a bug in Acrobat 8 that affected the onscreen display of those images that interacted with transparency or had it directly applied and the transparency was still "live" (not flattened). This was fixed in the update to 8.1. If you are running 8.0 you might want to try updating to 8.1 and see if that helps?

  • Colors fading on PDF export from Illustrator/Indesign CS2

    Hi guys,
    I can't figure out why colors are fading when exporting to PDF.  I've had this issue for a long time and am finally fed up with it enough to post.  I'm in the RGB space in Illustrator (and transparency blend in InDesign).  I'm using CS2 and Acrobat Pro 7 on Windows XP.
    Any help is appreciated, thanks.
    Ed

    Please repost in the Illy forum as your pdf generation does not use Acrobat technology, the people that use Illy will have the most experience in helping your fix your problem.

  • CP5 - W7 - Button Transparency Yellow color - flooding white areas

    Here are some buttons I made...
    This is the setting in Photoshop made for every saved button
    This is how the different buttons are displayed in "Preview in a browser" (F12)
    These above are ok!
    This one has gone crazy...
    Why? I have really looked at every setting.. and checked that I treated every image the same... Actually, all images are in the same PSD and therefore automatically the same options when saving.
    1. I need to use exactly this yellow color
    2. I need the transparency, because there are effects running in the background that will show around the outer edges.
    3. I can not find any choice that says choose this color as alpha... that might have solved the problem
    Is this a bug? An undeveloped feature to not set the Alpha, or just me that can not understand the tool.
    Please help me with a corect or incorrect way to fix this
    Best Regards // Daniel Perez

    Hi there
    You need to open the image in an image editing application and scrutinize a close up. The transparent color traditionally used in Captivate is based on the color of the pixel at coordinate 0,0 (upper left). It would appear this pixel is the same color as the face.
    Usually a safe trick is to flood fill the area you wish to become transparent with an odd color such as fuschia.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Preview color problem in Bridge CS 5.5

    I'm having the following problem with the thumbnails and previews in Bridge CS 5.5.
    After I've scanned an image, the preview matches the colors I expect, with nice saturated colors.
    After opening the image in Raw and making a few changes such as crop I press done and return to Bridge.
    The preview I get is much less saturated then it was before.
    When I reopen the image with Raw it first appears less saturated but shortly after, the saturated color returns.
    Saving the image as a Jpeg gives the correct, saturated colors.
    This problem first occurred after registering the product and receiving an update for Raw.
    Extra info: I'm working with Nikon .nef files. Converting them to Adobe .dng format solves the problem.
    Message was edited by: Hazelnoot

    You must have done a screen shot of the thumbnail as the enlarged version is same size.  But can still see difference.
    I would revisit your thumbnail setting and make sure it is HQ Iif you want to see edits in thumbs, and  check the default ACR setting.  Don't assume they are the same as computer can do unexpected things.
    Read the link I gave in post #1 as see if you have all the correct options selected.
    When you click on thumb does the preveiw panel show the same dull image or a correct one?
    It is possible the update fouled everything up, but seems like there would be more complaints.  I am still on ACR 6.4 however.  Am a slow adopter.

  • Acrobat XI - Transparent Text Color

    Any help with this would be spectacular, because I am beginning to think this release has removed this ability.
    Editing a PDF document that has text embedded within the layout, I want to set the "Fill" of the text to Transparent.  This was something I have been able to do for many Acrobat cycles now but with the release of XI it appears to be missing.
    I do not want to delete the text.  Additionally, I found where I can change the color of the text, but none of the options translate to Transparent.
    Thank you in advance for any assistance you can offer!

    Sadly, with what I am trying to achieve, this is part of a larger paragraph and I need to just blank out the fill on a word or two. 
    I have older versions of Acrobat so I can still get to where I am going, but it is problamatic that the new Acrobat lacks this feature.

  • Transparency blend color space in Illustrator

    In InDesign there is an option to specify the transarency blend color space. Is there something equivalent to this in Illustrator? If not, how does Illustrator set the colorspace (CMYK or RGB) for transparent elements? In printing we can get all kinds of problems with transparency problems such as boxes, if the transparency space differs from the image's working space. I want to find a way to sync this so the transparency blends all match the working space. Typically I work in CMYK.  Thanks.

    Ai offers you either RGB or CMYK; you decide which in the File > Document Color Mode ( circa v10 ). Transparency doesn't care which space you use in Ai.  If you work in CMYK, then just make sure your swatches and images are CMYK.  But, I think there are other reasons why you'd get boxes in transparent objects.  Take a look at Flattening.

Maybe you are looking for

  • Video randomly distorts at times. Why?

    I've had my MacBook for about a year and it has always done this. I'll be watching a movie and it'll distort/pixelate for a few seconds and then go back to normal. The sound will cut out for that 1-2 seconds as well. It's not the movies, I know that

  • How to make the document type in OAC2 as a parameter

    In Generic Object Services, when I choose Store Business document to manually attach word files from my desktop to a sales order, the filename which I choose is not displayed with the same name in the attachment list. It takes the document type name

  • Mails phisically in the server but not appearing in webmail and reconstruct

    Hello: Solaris 10 8/07 s10x_u4wos_12b X86 Sun Java System Messaging Server 6.3 The user deleted every single mail from his mailboxes via webmail. Every folder appeared empty in the webmail, the inbox, recycle bean, sent mails... all of them (I checke

  • Auto retirement in Asset

    Hi gurus, Is there an automatic retirement in asset once the set deletion flag or inactive status in plant maintenance equipment is activated? Thank you!

  • 1.3 memory leak?

    Hi all, I set my LR 1.3 on Vista to create all standard thumbnails on about 20,000 images, and when I came back it was using 700MB memory, and as it was going I saw memory use increase. When I quit and restarted LR was using 190MB. Maybe a memory lea