Clipping path automatically appearing

Hi,
I have an art figure that was created in Illustrator without a clipping path.  However, somehow when that art figure was saved as a black and white version, pieces of it were grouped and all of a sudden it has a clipping path tracing the artboard.  This is creating problems because the original color version is seen by InDesign as a certain size, and then when we relink to the black and white version, it shrinks the art to accommodate the clipping path.
Anyone know how this is happening and/or how to keep it from occurring? COuld it be that the document was created in CS4 and then opened in CS3?
Thanks

You are welcome, liscola.
You should be aware that using new features in a newer version may lead to loss/deterioration of the actual contents when downsaving; some losses may be less obvious.
In some cases, you may have to Expand to make things survive.
I believe new features that may cause trouble from CS4 to CS3 include gradients with transparency, graphic styles, multiple artboards, and the blob brush.

Similar Messages

  • Is there anyway to activate photoshop clipping paths automatically in CS4/5?

    Hello,
    Can a preference be set in Indesign to automatically apply the photoshop clipping path to Tiff images?
    Cheers Joe.

    You don't need to specify a flatness for indesign to pick up on that path, just need to set that it is the preferred path for an application to use. Paths aren't exclusively used for the purpose of knocking out a background or portion of a photo. You could google up device path flatness and you'll find a spiel something to the effect of set it quite a few pixels for very high res scans, fewer for low res. I believe it is just the tolerance for the application to use in interpreting which pixels to use. After all, a path is a vector outline and the application needs to determine how to cut the photo, which pixels to keep and which to exclude.
    Short adobe word on it.
    http://kb2.adobe.com/cps/327/327368.html

  • Automate selection of Clipping Path?

    I'm trying to create a droplet that will strip out the background of an image using the active Clipping Path regardless of the path's name (similar to the way InDesign automatically selects the active Clipping Path and ignores the other paths. So far I've only managed to automate the selection of a path by name, not by Clipping Path status. Many of the images I work with come from far off lands where they are not simply named "Path 1." Any ideas?

    When you select your pen tool, look up in the options bar. There are four path types. You want the fourth one, which cuts out donut holes. You may be able to simply select the paths and change their type to whichever one will cut out the holes for you, (make them all exclude overlapping, or make the inner paths subtract) or copy/paste them into a new path that was created while the fourth pen tool option was selected.

  • Make a clipping Path while retaining it's appearance - script

    This has been a long standing wish of mine, and I've devised this script that "kind of" works.
    This script takes your selection, copies appearance attributes, and pastes them to the top object after clipping.
    It's currently limited in a few ways:
    • It does not accept compound paths as clipping object (and I don't know how to test for it, nor how to iterate down said compound clipping object to set each path object to clipping separately)
    • It only works with a single stroke or fill
    • It does not understand "no fill" it will fill your object with white instead *FIXED*
    • I'm hoping to use the "graphicStyle" property to copy the appearance, since that sounds way cleaner. But I don't understand how to.
    Even with these limitations, I bound this to CMD+7 using fastscripts - I'm *already* used to it working this way!
    Carlos Santos, thank you for writing the base of what became this script
    I'd be much obliged if anyone can help me out with any of those limitations / wishes.
    #target Illustrator
    //  script.name = Clip Retaining Color.jsx;
    //  script.required = at least two paths selected, top most path is the clipping mask;
    //  script.parent = Herman van Boeijen, www.nimbling.com // 30/11/13;
    //  *** LIMITED TO A SINGLE STROKE AND/OR FILL OF THE CLIPPING OBJECT***
    //  Here's hoping to use the "graphicStyles" property to copy over the appearance.
    if ( app.documents.length > 0 ) {
        idoc = app.activeDocument;
    }else{
        Window.alert("You must open at least one document.");
    var idoc = app.activeDocument; // get active document;
    var sel = idoc.selection; // get selection
    var selectedobjects = sel.length;
    function ClipRetainingColour(idoc){
        var lay = activeDocument.activeLayer
        if(lay.locked || !lay.visible){
            alert("Please select objects on an unlocked and visible layer,\nthen run this script again.");
            return;
        var igroup = lay.groupItems.add(); // add a group that will be the clipping mask group
        var imask = sel[0]; // the mask is the object on top
        var clipcolors = [];
        //copy appearance
        if(imask.filled)     {clipcolors.fillColor = imask.fillColor;}
        if(imask.stroked)    {
            clipcolors.stroked = imask.stroked;
            clipcolors.strokeWidth = imask.strokeWidth;
            clipcolors.strokeColor = imask.strokeColor;
        for (var i = selectedobjects-1 ; i > 0 ; i--){
            var ipath = sel[i];
            ipath.move(igroup, ElementPlacement.PLACEATBEGINNING);
        imask.move (igroup, ElementPlacement.PLACEATBEGINNING);
        //enable clipping
        igroup.clipped = true;
        imask.clipping = true;
        //paste appearance
        if(clipcolors.fillColor)    {imask.fillColor = clipcolors.fillColor;}
        if(clipcolors.stroked)      {
            imask.stroked = clipcolors.stroked;
            imask.strokeWidth = clipcolors.strokeWidth;
            imask.strokeColor = clipcolors.strokeColor;
    if (selectedobjects){
        ClipRetainingColour(idoc);

    *FIXED IT* - it's working!
    I bound this to CMD+7 using the excellent Fastscripts
    My clipping paths will be so much more colorful from now on!
    Yay!
    #target Illustrator
    #targetengine main
    //  script.name = Clip Retaining Color.jsx;
    //  script.required = at least two paths selected, top most path is the clipping mask;
    //  script.parent = Herman van Boeijen, www.nimbling.com // 07/12/13;
    //  *** LIMITED TO A SINGLE STROKE AND/OR FILL OF THE CLIPPING OBJECT***
    //  Big thanks to CarlosCanto and MuppetMark on the Adobe Illustrator Scripting Forums, and my pal Niels Bom for showing me the debugger (...)
    if ( app.documents.length > 0 ) {
        var curDoc = app.activeDocument;
    }else{
        Window.alert("You must open at least one document.");
    var sel = curDoc.selection; // get selection
    var selectedobjects = sel.length;
    var clipobject = sel[0]; // the mask is the object on top
    var clipcolors = [];
    //var pathItems = [];
    var container = curDoc.activeLayer;
    //Only if there are objects selected
    if (selectedobjects){
        if(container.locked || !container.visible){
            alert("Please select objects on an unlocked and visible layer,\nthen run this script again.");
        }else{
        ClipRetCol(curDoc);
    function ClipRetCol(curDoc){
        //IF COMPOUND CLIPPING PATH
            if (clipobject.typename === "CompoundPathItem") {
                //copy appearance
                sel = curDoc.selection;
                clipobject = sel[0].pathItems[0];
                CopyAppearance(clipobject);
                //MAKEMASK
                app.executeMenuCommand ('makeMask');
                //Since making the clipping path changed the selection, set variable for selection again
                sel = curDoc.selection;
                clipobject = sel[0];
                clipobject = clipobject.pageItems[0].pathItems[1];
                PasteAppearance(clipobject);
        //IF REGULAR PATH
            else {
                //copy appearance
                CopyAppearance(clipobject);
                //MAKEMASK
                app.executeMenuCommand ('makeMask');
                //paste appearance
                PasteAppearance(clipobject);
    }//ClipRetCol END
    function CopyAppearance(clipobject) {
                if(clipobject.filled)  {
                    clipcolors.fillColor = clipobject.fillColor;}
                if(clipobject.stroked) {
                    clipcolors.stroked = clipobject.stroked;
                    clipcolors.strokeWidth = clipobject.strokeWidth;
                    clipcolors.strokeColor = clipobject.strokeColor;}
    }//CopyAppearance END
    function PasteAppearance(clipobject) {
                if(clipcolors.fillColor)    {
                    clipobject.fillColor = clipcolors.fillColor;}
                if(clipcolors.stroked)      {
                    clipobject.stroked = clipcolors.stroked;
                    clipobject.strokeWidth = clipcolors.strokeWidth;
                    clipobject.strokeColor = clipcolors.strokeColor;}
    }//PasteAppearance END

  • At open, illustrator puts clipping path on images and slices it up HELP!

    I am still using CS2, but this same problem has happened when I open a legacy (older version) file in CS4.....   When I open a file, it all of a sudden has a clipping path around the image.  Also, it is slicing up some images randomly.  It is very strang and I can't explain it.  I just saved and closed the file yesterday and today I go to open it on the same computer and all the photos have these clipping masks around them and some are sliced into multiple pieces.  Can anyone help with this???

    It's easily explained: It is opening the data as if it were an EPS or PDF, so the fault is probably with the options you chose when you saved the files in
    CS2. Check them. also of course keep in mind that some specific features have notably changed, so it may do thius simply to retain appearance, which you can influence by setting teh respective prefs....
    Mylenium

  • Trouble with clipping paths and expanding

    Hey y'all. Okay, so I have a Illustrator element that uses a clipping path.
    Even after I run "Expand Appearance" on it, it's not trimming the art to the bounds of the path.
    It's making for difficult to position correctly when copying into Photoshop as a Smart Vector or Shape Layer:
    And it isn't correct in After Effects either.

    What you are describing is just another example of the very common need to trim artwork (including filled, unfilled, open, and/or closed paths) without wrecking its already-applied Attributes, Appearances.
    As has been discussed many many times here, Illustrator simply does not provide that basic functionality...neither by its horribly-designed cutting tools nor through its problematic and caveat-riddled Pathfinders. Expanding a Clipping Path doesn't serve as a workaround for this long-missing functionality; nor does flattening transparency. You can't do it without resorting to the workarounds you've already tried or others that will no doubt be suggested.
    Once again:
    NONE of Illustrator's cutting tools (Knife, Scissor) can cut across artwork that includes multiple open, unfilled paths. Open unfilled paths are ignored by the Knife cut. The Scissor cannot cut across multiple paths at once.
    Illustrator's recently-added, very poorly implemented Eraser tool comes nearest to the needed functionality. It can at least cut multiple unfilled open paths without their becoming converted to unstroked, closed fills. But it unpredictably alters the shapes of remaining portions and has no means by which to accurately control a cutting shape other than rectangular.
    This is a prime example (there are others) of how Illustrator confuses and clutters the interface with multiple under-powered tools designed for similar functions, none of which measure up to a single tool properly designed for the same purposes in most other programs.
    Pathfinders are riddled with ridiculous caveats. Those which come close to providing the needed functionality are incapable of ommitting the unwanted deadwood and/or wreck strokes by outlining them.
    Illustrator needs a feature that allows any given path to be employed as either a selection marquee or a cutting path. And the cutting operation needs to act as expected regarding strokes as well as fills--as common in any other drawing program that does provide the long-missing functionality (most do; Illustator never has).
    JET

  • How do I show a clipping path on an image in Illustrator?

    Hi there
    I am a beginner when it comes to Illustrator and only use it when I have to - like now!
    I was wondering - Is it possible to place an image into an AI file and show its clipping path? (that was created in Photoshop)
    I have tried saving the image as a TIFF, PSD but no luck.
    I have also attached a screen shot - just to show the image that has a path.
    Thanks in advance.

    I have placed the image but the 'Embed' option isn't highlighted so I can't click on this!
    I think I have worked out another way to do this - I have saved the image on a transparent background in photoshop as a psd file and then when I place this in AI, the Photoshop Import options box appears and with this set to 'Convert layers to objects' it somehow
    works! like so............ (probably not the best way to do it?!!)

  • Clipping Path Assigner

    Hey All,
    I export high-res pdfs from indesign, and one of the biggest problems I have is during our preflight. Each image we have linked has to be "told" to use it's photoshop path, or else it will not use it upon export (leaving big white boxes).
    For every image, We have to choose Object - Clipping Path - Options: Then Photoshop Path, which automatically selects the available path, then Hit OK. And It won't let us do multiple images at once.
    So the question of a document script comes to mind. Would it be easy to create a script like this?:
    For each visible image:
        Do:
            Object - Clipping Path - Options
                Photoshop Path (will always be named "Path 1" (no quotes) if you need to specify a path name)
        End Do;
    End For;
    Popup - Finished
    I looked for an "Actions" feature of sorts, to record menu actions like photoshop, but it just doesn't exist. Thoughts?
    (I have pretty much zero scripting knowledge, so either a 'for dummies' instruction, or someone to help is in order...)

    Just select the frame and move it...
    What sort of difficulty are you having?

  • Clipping Path vs Alpha Channel

    Not sure if this is the right place to ask, but wondering which is better for outlined images (no soft transitions, just hard outline.)
    I've used both and don't see an advantage to either EXCEPT when converting an InDesign file to PDF. Files with PSDs with clipping paths seem to make much larger pdfs than same file using PSD with alpha channel. Not important for a final press file, but when I have to email screen proofs, then it's a big deal.
    Anyone care to weigh in? Thanks.
    Ringo

    Hi, there,
    I found this discussion during a search for alpha channels vs. clipping paths for clipping (for a job I'm working on), and thought I'd offer my own feedback based on my own experiences w/ similar files. I can't really offer a printer perspective, however, although we do work closely with many and also print film fairly regularly for local printers who are not yet Direct-To-Plate.
    For what it's worth, I use paths, myself, and save the file as a TIFF. Then I use the Object: Clipping Path menu in InDesign to select the path (I don't specifically designate a path as an actual clipping path in Photoshop anymore, as sometimes an image will have more than one path to isolate different elements).
    I find that alpha channels don't look very good when used in InDesign. They're just not that smooth/precise, in my admittedly limited use.
    I've uploaded a quick sample to http://i486.photobucket.com/albums/rr222/Xiebinrui/Alpha_vs_Clipping.jpg -- it's pretty self-explanatory, but the left side shows the bottom of an image using an alpha channel created from the original clipping path (cmd-click on the path to create a selection and then click the "create channel" button in the Channels tab, which automatically creates an "Alpha 1" channel), with the original clipped version on the right. I've tried adjusting the threshold and tolerance in InDesign, but it just always looks bad.
    I also haven't used the behemoth Photoshop EPS format since my QuarkXPress/Mac OS 9 days (even then, it eventually became possible to use TIFFs w/ clipping paths -- I could finally see my photo correctly instead of with the horrible Quark EPS preview).
    Anyway, re: alpha channels, maybe it's just that I don't know the right way to use them, but they don't seem to be very smooth when importing into InDesign (I was working on a job yesterday and today for which I had to download hi-res images from the client -- many of which used alpha channels instead of actual paths, but they're used on white backgrounds in InDesign, so I just didn't use the channels).
    So, anyway, I personally use and recommend paths (vector masks, as Artdirectorringo mentioned, seem to work fine, too) as opposed to standard pixel-based alpha channels, in general, if you're going to be placing the file into InDesign.

  • How do I transform a clipping path and layer at same time?

    I have a bunch of images with clipping paths that need to be altered. Most images need skewed or distorted, and I can't figure out how to transform the path at the same time I transform the layer - so I do not have to create new paths. Thanks
    Working in Photoshop CS2

    I’m afraid You will have to employ a workaround.
    I would recommend applying the Path as a Vector Mask to the Layer (with the Path selected command-click on the Add Layer Mask-button in the Layers-panel), then transforming, subsequently duplicating the Vector Mask and removing it from the Layer.
    Or copy-paste it into the existing Clipping Path and then remove it.
    Some part of the procedure may be automate-able with Actions or Scripts and hopefully it will still save at least some time.

  • Illustrator CS6: deleting unwanted items outside a clipping path

    Hi everyone,
    I'm creating a logo that employs a stippled texture (a half-tone) in various sections of objects comprising the logo. I've placed the stipple where I want it, created a clipping path to capture the area. Now I have all these other points that I don't need that I want to delete.
    Is there anyway short of releasing the clipping path, manually delete unwanted sections of the stipple and then re-apply the clipping path again? It would be like 'Applying Mask' in photoshop.

    You can enter isolation mode without releasing the clipping mask. Beyond that I don't see a way to do this automatically unless you want to make your stipples a compound path or group and use Pathfinder operations. Unfortunately AI doesn not have inside/ outside detection for these kinds of scenarios that wouzld allow to quickly select separate objects in this fashion...
    Mylenium

  • Clipping paths in AICS3 IMPROVED!

    This is a multi-part message in MIME format.
    --------------030201010100080805050607
    Content-Type: text/plain; charset=ISO-8859-1; format=flowed
    Content-Transfer-Encoding: 7bit
    Just a word here...
    After reading Bill's thread: Illustrator with Freehand
    Features..
    Mordy Golding put up links to a video podcast about AICS3 and
    some of
    the great enhancements...
    Here's a link Illustrator CS3 Overview
    <
    http://rwillustrator.blogspot.com/2007/03/real-world-illustrator-podcast.html>
    you'll need to sign up to Mordy's video podcasts if you
    haven't already.
    Including the new way in which clipping paths works!.. I
    believe the
    method of creating a clipping path may still be the same
    however the BIG
    difference now is that at the very least alignment uses the
    clipping
    path and not the contents!!! a good step in the right
    direction.. I'm
    still not sure whether the clipping contents outside the path
    remain
    visible or not.. as per previous versions.. but it will be
    interesting
    to see what it's like once it starts to ship and people get
    their hands
    on it.
    Incidentally I used Freehand from version 3 on a PC to MX but
    our studio
    got fed up with Freehands bad color fidelity for printing
    comps - it
    worked fine for output of fairly simple spot colour jobs but
    full colour
    stuff was getting difficult to manage. I didn't cross over
    lightly - I
    used AIv10 in the background sometimes duplicating jobs in AI
    from
    Freehand in my spare time to see how it worked. While I loved
    the tools
    in Freehand - pen tool, Find and replace, paste inside etc..
    better
    colour fidelity and integration with InDesign and Photoshop
    and more
    reliability for output were more crucial to us than the
    tools. That's
    just me/us.
    But at the end of the day it looks like AICS3 is giving us at
    least some
    of what we've been asking for.
    I hope this has been of some help.
    Kind Regards
    Piers Le Sueur
    --------------030201010100080805050607
    Content-Type: text/html; charset=ISO-8859-1
    Content-Transfer-Encoding: 7bit
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <meta content="text/html;charset=ISO-8859-1"
    http-equiv="Content-Type">
    <title></title>
    </head>
    <body bgcolor="#ffffff" text="#000000">
    <font size="-1"><font face="Lucida Grande">Just a
    word here...<br>
    <br>
    After reading Bill's thread: Illustrator with Freehand
    Features..<br>
    Mordy Golding put up links to a video podcast about AICS3 and
    some of
    the great enhancements... <br>
    <br>
    Here's a link <a
    href="
    http://rwillustrator.blogspot.com/2007/03/real-world-illustrator-podcast.html">Illustrator
    CS3 Overview</a> you'll need to sign up to Mordy's
    video podcasts if
    you haven't already.<br>
    <br>
    Including the new way in which clipping paths works!.. I
    believe the
    method of creating a clipping path may still be the same
    however the
    BIG difference now is that at the very least alignment uses
    the
    clipping path and not the contents!!! a good step in the
    right
    direction.. I'm still not sure whether the clipping contents
    outside
    the path remain visible or not.. as per previous versions..
    but it will
    be interesting to see what it's like once it starts to ship
    and people
    get their hands on it.<br>
    <br>
    Incidentally I used Freehand from version 3 on a PC to MX but
    our
    studio got fed up with Freehands bad color fidelity for
    printing comps
    - it worked fine for output of fairly simple spot colour jobs
    but full
    colour stuff was getting difficult to manage. I didn't cross
    over
    lightly - I used AIv10 in the background sometimes
    duplicating jobs in
    AI from Freehand in my spare time to see how it worked. While
    I loved
    the tools in Freehand - pen tool, Find and replace, paste
    inside etc..
    better colour fidelity and integration with InDesign and
    Photoshop and
    more reliability for output were more crucial to us than the
    tools.
    That's just me/us.<br>
    <br>
    But at the end of the day it looks like AICS3 is giving us at
    least
    some of what we've been asking for.<br>
    <br>
    I hope this has been of some help.<br>
    <br>
    Kind Regards<br>
    Piers Le Sueur<br>
    </font></font>
    </body>
    </html>
    --------------030201010100080805050607--

    (I'm still not sure whether the clipping contents outside the
    path remain
    visible or not.. as per previous versions)
    Yes the contents are still visable.
    AI cs3 does have a new quick mask type feature. It only works
    on placed images and not vector artwork. When you place a Photo
    there is a button that appears in the top menu bar called "MASK"
    ..ooo haha.
    So in one step you can set your photo in a clipping mask
    "square" shape only. It creats a path that is the exact size of the
    image you have placed. From there you can resize the path to crop
    the image as needed. the menu bar also shows more options like
    adding a stroke etc.

  • Clipping paths inverting in CS3

    I see that this has been discussed previously, (http://www.adobeforums.com/webx/.3c05af0b/12) but the topic is now archived so I wondered if there are any new thoughts on the matter.
    Images with clipping paths that work perfectly in CS and CS2 are coming into CS3 with the path inverted. The clipping paths are set up correctly in Photoshop, so it's not the paths that need to be fixed. Now I know that a simple fix is to go into Photoshop and create a mask using the path, but we work on catalogues with hundreds of images that are supplied to us with clipping paths - seemingly standard practice for the image libraries that are supplying the images.
    Our catalogues/mailers are weekly productions so we have 5 on the go at any one time and that means a lot of images - up to 300 for each publication. Thankfully it doesn't affect every image!
    I can't determine why it happens to some and not others, but it is definitely frustrating. We also have to redownload the images for each publication, so we end up fixing the same image over and over again. This is a consequence of how the image libraries that we are working with operate - we are not allowed to keep a copy of the images.
    Has anyone come across a way around this, other than editing in Photoshop? Any suggestions gratefully received.
    Steve
    Indesign CS3, 10.5.4 on 3.06GHz Intel iMacs

    Yes the images that invert are RGB, but then so are the ones that work perfectly - and all of them worked OK in CS2.
    And yes, the path is set as 'subtract from shape area' - and THAT appears to be the difference between ones that work and ones that don't work...so what does that mean? Again, all the images worked fine in CS2.
    Does it mean that CS3 (Photoshop/Indesign) is messing up the paths, or does it mean that CS2 (Photoshop/Indesign) was more forgiving? Unfortunately we no longer have CS2 installed so I can't test that.
    Even though it is fairly simple to fix, and there are various ways to fix it, the problem still remains the amount of images that are affected and that we can't make a permanent fix to the images. next time we re-download them from the image libraries we will need to fix them again.
    Perhaps I need to flag the problem images to the image libraries, but I want to be sure of my facts first.
    Thanks for the input guys.

  • EPS photos with Clipping paths dont show in Quark Xpress

    Anyone experience why a Photoshop file with a clipping path will not preview when brought into Quark Xpress unless I save the preview as a tiff?
    I use photoshop 7.1.

    From desktopublishing.com's review of QuarkXpress 4
    "The ability to control a picture's appearance in several areas. For example if you want to make a specific part of an image transparent, simply specifying the part using the clipping paths, the alpha channel that is embedded in the original picture, or the white area of the image. It can also read clipping paths in either TIFF or EPS format. Trapping tools and supports most popular color spaces, including Hexachrome, are also included."
    and according to Wikipedia, Xpress 4 was released in 1997, eleven years ago with 4.1 coming two years later.
    So, while I was just guessing thinking back over the last decade of versions, I was not far off, and I can't remember ever having a clipping path problem with tiffsthat version. Of course, if you didh't save the clipping path as a Clipping Path in Ps, then you would have a problem. That has been fixed now too.

  • Importing SVG with nested clip-path

    I'm having serious issues in Illustrator CS5 trying to import SVG files with nested clip-path properties.
    Illutrator seems to create unnecessary groups, and messes up with group parents, effectively screwing things up.
    Here is a minimal example :
    <?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [<!ENTITY ns_svg "http://www.w3.org/2000/svg"><!ENTITY ns_xlink "http://www.w3.org/1999/xlink">]>
    <svg version="1.1" id="main" overflow="visible" xmlns="&ns_svg;" xmlns:xlink="http://www.w3.org/1999/xlink">
      <g id="piece-1">
        <g clip-path="url(#cpform)" id="form1">
          <g clip-path="url(#cplogo)" id="logo1">
                        <rect fill="#FF0000" x="10" y="10" width="1000" height="1000" />
          </g>
        </g>
      </g>
      <g transform="matrix(1,0,0,1,200,0)" id="piece-2">
        <g clip-path="url(#cpform)" id="form2">
          <g clip-path="url(#cplogo)" id="logo2">
                        <rect fill="#FF0000" x="10" y="10" width="1000" height="1000" />
          </g>
        </g>
      </g>
      <clipPath id="cpform">
              <rect x="0" y="0" width="150" height="150">
              </rect>
      </clipPath>
      <clipPath id="cplogo">
              <rect x="0" y="0" width="100" height="100">
              </rect>
      </clipPath>
    </svg>
    Such a valid SVG file displays fine in Chrome, IE, Opera, Firefox, but Illustrator fails loading it properly, because it creates two groups between "main" and "piece-1" (which is in itself not too bad), and sets piece-1 as a brother of another unnecesarry group from which piece-2 will descend. piece-2 and piece-1 are then clipped with piece-1 clip-path, which is just plain wrong and screws display.
    Note that you can move piece-2 to the root of the document, which restores the display. But save this fixed file, and open it again : it"s back to its broken state.
    Does anoyone know if this is fixed in CS6 ? If there is a workaround ?

    AI doesn't care for the original structure of an SVG. It will merely try to retain the appearance based on its own internal logic, which of course matches how you would create a normal AI file. So no, you can't probably avoid it.
    Mylenium

Maybe you are looking for