Transparency issues: Tiff object on another object of Tiff

I have a CMYK tiff file a layer created in Photoshop, which is white letters on a transparent background (I created it from an indesign text that I framed rasterized in order to adapt the work of the police. The program shows this as a "(vecteur Smart objet CMJN/16)."

When I place the file in my indesign on project blue photography (as TIFF, with various shades of blue), everything looks perfect on screen.

When I use the export feature to create the PDF file, looks good on the screen.

When I print, the watch box, distorting the blue image behind it.

I'm not so much worried for my printer (HP Photosmart Plus), but I am concerned about sending my PDF files on a professional printer and having transparency problems. I read the other entries of the transparency forum, but none of the proposed solution works. Any suggestions?

Try to hit only 16 bits to 8 bits.

And read this:

http://InDesignSecrets.com/eliminating-YDB-yucky-discolored-box-syndrome.php

Bob

Tags: InDesign

Similar Questions

  • Impossible to transparent color TIFF in InDesign

    InDesign suddenly stopped letting me background transparent color TIFF or Bitmaps.

    I can the grey color TIFFs but they have origins and I need them transparent.

    Another strange thing, it's things like color and color occurs when I make a PDF but I do not see it in my InDesign file work.

    I need this resolved as soon as possible, if anyone has a solution I'd be real happy.

    ADOBE. He meets. Every day there's a new glitch between Illustrator and InDesign. We pay way too much for these applications to have deal with this nonsense.

    -brian

    Solution: Turn on display > overview of overprinting.

    Color bitmap displays only black-and-white tiff images

  • Transparency, overlapping and object

    Hello

    I am trying to solve a problem as when you change the opacity of an asset.

    Here's my pirate:

    pirate1.jpg

    When I design my stuff in illustrator, I tend to only mind not draw accurately what is visible, as you can see here:

    pirate2.jpg

    Now, I mean to have this character disappeared into the background of the illustration. When I select the whole pirate image and drop the opacity, there are hidden below forms that become visible and you lose the image a bit:

    pirate3.jpg

    So my question; Y at - it an option to choose where everything that is hidden is deleted, so nothing is behind another form and reduces the opacity of my pirate without a change in its appearance?

    I hope I've explained my question pretty much, any help will be appreciated!

    Try to group the objects and apply transparency to the group.

  • Control the transparency of null objects

    Is it possible to control the transparency with a null object. I know that you can scale, rotate etc but I have no luck with transparency. Is there a work around?

    You can whisk the attribute of the opacity of the layer you want to order to the opacity of the null value attr.

    (1) select the layer draw and the layer that you want to control and press T to expose the attributes of opacity.

    (2) alt + click on the stopwatch for the opacity of the layer you want to be a slave (the opacity value should turn red & the expression will prove controls)

    (3) click on + drag the spiral to the attribute of opacity of the null value.  (in the layers slave expression field you should see something like "thisComp.layer("Null_1").transform.opacity")

    4) click on the layer to exit the field of expression.

    (5) If you want to disconnect alt click on the stopwatch for opacity of layers slave again.

  • Issue of object shared (with DataGrid)

    Guys...

    I did some research and I am able now to have a list in my screen, with names and notes, and I get a name and a score...

    However, the idea is to have all registered scores or at least the first five of them...

    Any help?

    That's what I have:

    Frame...

    function backToGame(e:TimerEvent):void {}

    If (lives > 0) {//go back to game

    } else {}

    captureUserInput();

    addChild (typeNames);

    }

    }

    function captureUserInput()

    {

    captureText();

    }

    function captureText (): void

    {

    txt_inp.type = TextFieldType.INPUT;

    txt_inp. Background = true;

    addChild (txt_inp);

    txt_inp. Text = myText;

    txt_inp.addEventListener (TextEvent.TEXT_INPUT, textInputCapture);

    }

    function textInputCapture(event:TextEvent):void

    {

    OK.x = 800;

    OK.y = 675;

    addChild (ok);

    }

    var str:String;

    var score: Number;

    ok.addEventListener (MouseEvent.CLICK, toGameOver); This is a button that I have loaded

    function toGameOver (e:MouseEvent): void {}

    Str = txt_inp.text

    score = count;

    ok.removeEventListener (MouseEvent.CLICK, toGameOver)

    addScore (str, score); with this, I have the name and the score recorded in the shared object (I copy the function in any case)

    gotoAndStop (6);

    }

    function addScore(n:String,_s:Number):void

    {

    sO.data.highscore.push ({user: n, score: s});

    sO.flush (); Save to disk

    }

    Okay, so I got another frame, where you have your name, your score and the possibility to see the best scores...

    After that, I have the last picture, where scores assume to be, but I only get one made during this game and no one else...

    Import fl.data.DataProvider;

    Import fl.controls.DataGrid;

    Import fl.events.DataGridEvent;

    var dg_score:DataGrid = new DataGrid();

    addChild (dg_score);      my DataGrid has been added to the library before (I wonder if I can export and load it into the code)

    dg_score. Columns = ["Name", "Score"];

    dg_score. SetSize (140, 100);

    dg_score. Move (10, 40);

    addingScore();

    function addingScore()

    {

    var scoreArray: Array = new Array();

    var scoreObj:Object = new Object();

    var i: int = 0;

    for (i = 0; i < sO.data.highscore.length; i ++)

    {

    scoreObj ['name'] = String (sO.data.highscore [i] .user);

    scoreObj ["Score"] is String (sO.data.highscore [i] .score);.

    }

    scoreArray.push (scoreObj);

    scoreArray.sortOn ("Score", Array.NUMERIC | ") Array.DESCENDING);

    dg_score. DataProvider = new DataProvider (scoreArray);

    dg_score. RowCount = dg_score.length;

    }

    So... what Miss me this indicate at least scores top 5?

    Thank you in advance!

    First confirm that the length of the sO.data.highscore.length is enough to give you the number of items you want to the list.

    I don't think you want to be assigned...

    scoreObj ['name'] = String (sO.data.highscore [i] .user);

    scoreObj ["Score"] is String (sO.data.highscore [i] .score);.

    in the loop like you because you're basically crush every time you looped.  The only value that is added to the scoreArray is the last assigned value.

    Try something more to...

    function addingScore()

    {

    var scoreArray: Array = new Array();

    var i: int = 0;

    for (i = 0; i< so.data.highscore.length;="">

    {

    scoreArray.push ({Score: String (sO.data.highscore [i] .user), Score: String (sO.data.highscore [i] .score)});

    }

    scoreArray.sortOn ("Score", Array.NUMERIC | ") Array.DESCENDING);

    dg_score. DataProvider = new DataProvider (scoreArray);

    dg_score. RowCount = dg_score.length;

    }

    (I don't know if I kept track of syntax as gar as between parentheses and brackets go into what I've rewritten just above)

  • Keep transparency when copying object displayable?

    When I use Bitmap.draw () to copy a displayObject - do I lose transparency? In one case I could be copying a .png file which had transparency and in another case I copy a composite image made up of several DisplayObjects. It seems that the resulting images are bitmaps without transparency.

    Is it possible to duplicate the .png in memory files, preserve transparency and have unique items for use in different places on the screen?

    This brings us to the use of the draw() method.  I just used your png and the resulting bitmap has transparent png.

    I used the following code:

    var vfdata:VideoFrame = new VideoFrame (0,0);  I posted your picture to the VideoFrame class
    var vf:Bitmap = new Bitmap (vfdata);  This is needed to get the width/height of the image used below
    var bmpd:BitmapData = new BitmapData(vf.width,vf.height,true,0xffffff);
    bmpd. Draw (vfdata);

    addChild (bmpd);

  • Need help for export to PDF and transparency issues

    Thanks to this community, my InDesign files are almost free WARNING , but I still have the following warnings in the preflight:

    The PDF document using the features requiring at least Acrobat 5.0 (PDF 1.4) [someone suggested I do that - is this correct?]

    Used transparency (transparency group)

    Used transparency (soft mask in the image)

    Police is incorporated (either completely or as a subset)

    I export to PDF.

    I have merged my diapers.

    What should I do?

    Here is a summary of my settings:

    Description

    [Based on "[print high quality]"] Use these parameters to create Adobe PDF documents for print quality on the ovens and desktop printers.  Creating PDF documents can be opened with Acrobat and Adobe Reader 5.0 and later versions.

    Setting predefined PDF: CreatespacePreset

    Compatibility: Acrobat 5 (PDF 1.4)

    Compliance with standards: no

    General

    Pages: all the

    Spreads: Off

    View: default

    Layout: default

    Full screen: off

    Generate thumbnails: Off

    Optimize the PDF: on

    Create Acrobat layers: n/a

    Export of layers: visible and printable layers

    Include bookmarks: Off

    Include hypertext links: Off

    Export nonprinting objects: Off

    Export the visible guides and baseline grids: Off

    Create the tagged PDF document: on

    Interactive elements: exclude the

    Compression

    Color images

    No change sampling

    for the above images: 450 ppi

    Compression: automatic

    Size: n/a

    Quality: maximum

    Grayscale images

    Bicubic Downsample to: 300 dpi

    for the above images: 450 ppi

    Compression: automatic

    Size: n/a

    Quality: maximum

    Monochrome images

    Bicubic Downsample to: 1200 dpi

    for the above images: 1800 DPI

    Compression: CCITT Group 4

    Compress text and line art: on

    Crop the Image given to executives: on

    Marks and bleeds

    Crop marks: Off

    Brands of purge: Off

    Registration: Off

    Color bars: Off

    Information page: Off

    Brand page type: default

    Weight: 0,25 pt

    Shift: 0,0833 in.

    Use Document bleed settings: on

    Purge at the top: 0 in

    Bottom purge: 0 in

    Purge inside: 0 in

    Bleed outdoors: 0 in

    Slug area: Off

    Output

    Color conversion: no color Conversion

    Destination: n/a

    Profile Inclusion policy: include all profiles

    Simulate overprinting: n/a

    Output Intent profile_name: n/a

    Output condition: n/a

    The identifier for the exit Condition: n/a

    Registry name: n/a

    Advanced

    Subset fonts below: 0%

    Omit PDF: Off

    Omit EPS: Off

    Omit Bitmap Images: Off

    Transparency flattening preset: n/a

    Ignore spread overrides: n/a

    Security

    N/A

    Caveats

    Thank you

    Susan

    These warnings are not a problem for the export settings you use, not for CreateSpace so they can take the dynamic transparency.

  • Issue of API or another restricted signature access

    Hello

    I know there are a lot of discussions about this, but I still have some doubts, I want to delete, then go ahead.

    I have bottom j2me.

    Here are the ones;

    1. can you use api calls without signature handset blackberry even to the objective test (as we do in symbian handsets).

    2. If I register my application fee 20 USD, then what will be signed I mean my PC or my JDE and the .cod app file only.

    3.i develops a Blocker for balckberry phone call. After the purchase as the keys of the certification, these keys will be used for applications that will develop or I need to buy keys for applications that will be, I develop in the future.

    Please help me and others!

    Thank you & best regards

    1 n ° If you want to test the API stuck on real device, your application must be signed.

    2. you receive the signing keys, having to install them on your machine. Cod files will be signed with signature tools.

    3. you should buy the keys only once, you can use it for allmost ' no number of times, for "n", number of applications and signed app can be used on "n" number of devices.

  • Change the color of the placed transparent images (tiff, psd, png...)

    Hello.

    I have a project with a lot of images placed. They must be transparent, because I need to produce a number of variants and quickly change the background and the color of these images. The images themselves have a unique color. I know that I could change their color in Photoshop and then place them in a group, but it would be much easier to just place a black version of them, arrange them, and then duplicate this group and change the color of the images. I can do this in Illustrator? I tried to use TIFF, png and PSD to get transparent images, but I only managed to change color in TIFF (for example) when they lacked transparency.

    Can someone help me with this? Thank you!

    You cannot colorize hair which is not flat, as you found it.

    Save an extra image is your transparency in grayscale mask. Align, and select the images and the palette of tranaparency > Popacity make mask > check Invert mask if necessary as in my example.

  • 10 Firefox &amp; jquery cycle plugin transparency issues

    We use the jquery cycle plugin on many sites and after only 10 of Firefox was released, we notice a strong black box appearing on the slides during transitions.

    What's happening:

       transition starts
       image area turns solid black
       next image fades in from black color
    

    In other browsers (FF9.x and less, IE7 +, Chrome, Safari) the transition would be one slide to another and not black to the next slide.

    Does anyone have an explanation for that? I thank in advance.

    Try announcement Web development / standards evangelism MozillaZine forum. The helpers there are better informed on the problems of development of web page with Firefox.

    http://forums.mozillazine.org/viewforum.php?f=25

    You will need to register and log in to post in this forum.

  • How to prevent pdf x1a transparency issues indesign cs4?

    Transparencies appear as boxes indicated. I tried to change to acrobat 5 or higher, but how do I do that AND it still be pdf format correct x1a? I used to know the answer to this question, but not met in some time! Thanks in advance.

    Look for seams. You see no sceen artifacts.

  • The PNG transparency issue

    Hello

    I have a wired problem. Without worrying if I use CS 4 x 64 or x 86 I can't record a channel alpha in PNG format. It supports alpha, right?

    I open a file tga with alpha channel save in png and he went.

    The same thing happens if I choose "save for web and devices".

    Any ideas?

    Response of Mylos read more carefully, png does not have an alpha channel.

  • Issues generated by InDesign CS2 PDF-feather effect/transparency

    I'm at my wit's end. I received a file of the customer PDF created to my features (even those we have used for 5 years). I'm having massive flattened transparency issues. I am currently using Trueflow version 3, a tear that does not support dynamic transparency; Therefore, distill my settings require that transparency will be flattened. There are some horrible results I can't fix on my end. He's prickly showing (and exit from the plate!) where she placed on certain pages .psd files. There is also a problem with feathered objects (associated pictures) - they look great in the document but then exported and flattened, there is a white box behind the photos rather than the soft look of feathers.

    When I exported its CS2 using Acrobat 5 file instead of 4, the effect is very good, but - my rip shot of it. When I export to my specs, the PDF's print these questions.

    I want to clarify that I always show print PDF files ready to help out and preview overprinting - this isn't a problem with preview - is a specific file & export & resulting print number.

    I would be nice to be able to help my client - this is a rush job. If someone has encountered this and has what may be the origin of this feeling, please let me know-

    Also - I do have a program to fix this problem-

    Thanks in advance-

    Part of the problem may have to do with the flattening settings used by your customer of PDF creation, not the joboptions themselves. As a general rule, you should have parameters of vector flattening which are set to 100% and the resolution of your device. In addition, you should have your PDF export customers rather than go through the road of distillation of PostScript.

    In addition, even flattening of transparency has seen some significant improvements in the last few editions of InDesign and Acrobat. Remember that CS is InDesign 4. The current version is 6 InDesign (CS4).

    What I would recommend is that you have your client PDF export with transparency dynamic (i.e., PDF 1.5 or higher). You should then flatten the PDF yourself in Acrobat 9 Pro (not previous versions) with the appropriate parameters for your RIP since you know the resolution you are RIP. RIP the resulting PDF file.

    Good luck. And you should really start saving for a RIP update.

    -Dov

  • Object with a border of feathers

    I want to place a circle with a border to feathers to animate. I know how soften in PSD, but when I save as a png to animate it consists of raw points?

    What is the proper procedure to get items to feathers to animate?

    In css, the shadows are applied to the object, and if it's a transparent png the object's bounding box. If you need to put your shadow in the png and png-24 format.

  • [CS3/4, JS] Apply the pen with an object style

    I was hoping to apply transparency via an object style effects using this:

    myObjectStyle.objectStyleContentEffectsCategorySettings.enableFeather = true;

    But "object does not support the property or method...". "etc.

    I would be very grateful if someone could point me in the right direction.

    Thanks in advance - Jeremy

    I had this same problem with the bevel and emboss effect and I just thought about it!

    Here is the code for my style of object and bevel/stamping out perfectly.  The key is the last line.  You must set the parameter applied to true so he could check the box and actually apply the effect.

    var myObjectStyle = myDocument.objectStyles.item ("FamilyOfFrame");
    try {}
    var myObjectStyle.name = MyName;
    }
    {} catch (MonErreur)
    myObjectStyle = myDocument.objectStyles.add({name:"FamilyOfFrame"});)
    }
    myObjectStyle.strokeWeight = 0;
    myObjectStyle.transparencySettings.bevelAndEmbossSettings.size =. 09;
    myObjectStyle.transparencySettings.bevelAndEmbossSettings.style = 2020618852;
    myObjectStyle.transparencySettings.bevelAndEmbossSettings.applied = true;

    But as I learn... not all effects include the "applied"... property

    Alex

Maybe you are looking for