Illustrator :: CS6 - Deleting Unwanted Items Outside Clipping Path
Apr 30, 2013
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.
View 2 Replies
ADVERTISEMENT
Jun 2, 2012
How do I get rid of the small orange line in the right hand side of this image? I want to create a white cross through the whole image..
View 7 Replies
View Related
Jun 28, 2013
First of all, some details as to what we are working on:
Mac OSX 10.6.8
Illustrator CS6
Accessing files on a shared network drive
I have been working on a file for a number of months now with no problems at all. Right at the point of it being signed off today I opened it to prep for printing (outline fonts, check colours etc.). When I opened it I noticed a number of the graphics (embedded graphics, not linked files) and areas of text were missing. Completely missing. No text boxes, no sign of any images having been there, just GONE. I closed the file without saving and opened it in CS5 - neither the graphics or the text appeared in CS5 either.
Nobody except myself and the other guy has access to these files (nor the softare to open them). The file has not been opened since June 6th when I last made a change (and everything was fine!).
This is not the only file we have discovered this problem with - there was another occurence of this with a completely different file yesterday which we put down to a small glitch, but this is now getting worrying. Yesterday it was graph items, so we thought it was something to do with those. Today it is bog standard graphics and text (no font issues either).
Now, I have also noticed something else with this particular file - it is acting more like an imported PDF than an original Illy file in that items are linked together (un-linked by right-clicking and selecting 'release clipping mask'). I don't know if this could be related? It was definitely created from scratch in Illustrator, and none of the items were linked in such way, or imported from another file.
View 7 Replies
View Related
Jan 19, 2013
Win7 64bit Ai: Cs6
[URL]
down under step #4 it says to Copy (& Paste) the circle that's inside a Clipping Mask and to the drag it out of the mask in order to duplicate it twice.
I've pulled it out of the mask or even, actually, how to go about pulling it out of the mask
thus far I've Copied and Pasted in In Front ... does copying and pasting it in front bring it outta the mask?
do i need to create a new layer after I've Copied it and then Paste it on the new layer?
View 10 Replies
View Related
Nov 20, 2012
I have some type converted to outlines, and it is in front/on top of a places raster pattern. when I select the type shapes and pattern and make a clipping mask, the pattern disappears and the letter shapes are filled with nothing!
Matters not whether the letter shapes are grouped or not...is there a way to have all of the letter shapes act as clipping mask together?
View 2 Replies
View Related
Dec 5, 2012
Trying to mask type with a vector pattern (place a vector pattern in a type clipping path), but nothing seems to be working. Never had issue before. Tried path in front, pattern in front, converting type path to compound path, converting vector to compound path. A couple of times it looked like it worked, but the pattern was invisible within the path. Illustrator CS6, on a Mac.
View 2 Replies
View Related
Mar 23, 2014
I'm trying to create a clipping mask of a photograph using several separate shapes and then separate the final masked image/shapes.
I've made the shapes a compound path, and then applied a clipping mask (so far so good).
Now that I have my masked photo/shapes I want to separate the shapes so I can edit them individually and independent of one another.
(using Illustrator CS4)
View 8 Replies
View Related
Jul 18, 2013
I'm working with another artists's file, and I can't seem to release the clipping mask he created. When I try, I get an error message that says, "Can't ungroup the objects." I've tried releasing Compound Paths, but I get the same message.
View 4 Replies
View Related
Apr 14, 2012
I have a collection of circles and rectangles in my document. Is there any way to sort out circles from rectagles using JavaScript? Say i want to make my circles red and the rectangles blue.
View 8 Replies
View Related
Oct 26, 2013
Any way to do this using strokes, but everything I've tried so far has been unsuccessful. I'm starting to realize that this may actually be impossible, but maybe there's a trick I'm unaware of. Pic should explain what I'm trying to do.
View 3 Replies
View Related
Dec 1, 2013
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!
#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.
[code]....
View 6 Replies
View Related
Dec 5, 2013
I have a very simple javascript for Illustrator that is intended to render all filled objects semi-transparent. It works nicely but for large documents with many objects this takes ages, even beyond the time it would take to do it manually.
I'm wondering if there is any way to improve this script so it works in a reasonable time for large files? I'm running Illustrator CS5 on a Windows 7 64-bit Intel Quadcore i5-2400 @ 3.10 GHz System with 12 GB of RAM and an AMD Radeon HD 6350 graphics. Would upgrading to CS6 significantly improve the speed? CPU load is only at 25%, but I guess javascript cannot be run in multiple threads with the Illustrator engine? Is there another scripting language that would allow me faster processing of that task in illustrator or is my code just poorly optimized?
with (app.activeDocument) {
if (pathItems.length > 0)
{
for (var g = 0 ; g < pathItems.length; g++)
{
if (pathItems[g].filled == true)
{
pathItems[g].opacity = 50;
}
}
}
}
View 5 Replies
View Related
Sep 19, 2012
The first loop grabs the geometries drawn in the current document and rotates it around itself creating duplicates. The second loop is supposed to circumvent more geometries around the newly created geometries.
But instead of creating a radiant pattern, this code builds a tower: for the second loop everytime it grabs the last drawn geometry instead of what is in the "Original"
for NumPaths = 1 to frontDocument.PathItems.count
set myPath = frontDocument.PathItems.item(NumPaths)
For index = 0 To 30
set newPath = myPath.Duplicate
call newPath.translate(100*sin(6.14* index/30),100*cos(6.14* index/30))
[Code] .......
View 17 Replies
View Related
Jul 13, 2012
I want to create an illustration with black outlines. Within these outlines I want to have some spots without outlines that stay clean within the lines. I have tried 3 options so far and have found a solution but it's far from ideal.
1. Create clipping masks for each element that has a spot on it and assign a stroke to the clipping path again after. However by creating the clipping path, the path styles dissapear. In this case I want to keep the pointed ends to the open path outlines (see top image).
2. Draw in the lines where the spots are and create a live paint object of the entire illustration. Then paint in the spots and other areas. However when I create this live paint object the lines again lose their applied styles and even 'end' at each intersection, creating nasty edges where the lines should go 'underneath' smoothly (see bottom image).
3. The option Im using now. Duplicate the path outlines and create clipping masks for the spots without strokes. Then put the stroked outline with the desired styles on top. The problem with this is that I have almost twice as much elements in my illustration now than I actually 'need'. And the styled outlines are not connected with the color underneath, so its very easy to accidentally move something around...
Any easier way to create this effect without all the hassle?
View 3 Replies
View Related
Dec 28, 2012
Is it possible to script the menu item Object/Path/Outline Stroke?I need to cycle through all the Path items in the document and convert them to Outlines.
View 2 Replies
View Related
Apr 2, 2013
I'm trying to create a script in CS5 mac os10.6.8 that will change the fill color of selected pathItems. I need a simple script that will change a selected pathItem to cmyk values 2,3,15,0. I will then select this script and implement the action in a batch of 600 files.
I wish this process could be recorded as an action but when I record the action "add new swatch" I have to manually input the cmyk values, which will take forever for a batch of over 600 files.
View 15 Replies
View Related
Oct 1, 2012
I'm trying to write a script that applies a single swatch to a single path item and repeat for every swatch that is currently contained in the swatch library. This script that I have written is only applying the last swatch in the swatch library to every path item on the page. Currently I'm more concered with getting each swatch that is currently in the swatch library to be applied at least once before worrying about applying the same patch to any extra number of patch items compared to the swatches.length.
// Apply every swatch library color to path items on a page
if ( app.documents.length > 0 && app.activeDocument.pathItems.length > 0 ) {
doc = app.activeDocument;
[Code]....
View 11 Replies
View Related
Mar 14, 2004
how to get rid of for instance a cable line that is in front of a tree or text in front of an image?
View 1 Replies
View Related
Jun 18, 2013
I'm going on vacation and want to work on adding keywords, deleting unwanted pictures, and other organizing. s there a way to do this without copying all my pictures (not enough room on the laptop for that.). Lightroom 4.4
View 8 Replies
View Related
Mar 28, 2012
I'm wasting time having to place my image in Illustrator then manually line up the clipping path. You used to be able to save a file with a clipping path as an EPS in photoshop, select "retain vector data", place in illustrator and hit cmd Y to see the clipping path. I need the image and the clipping path in Illustrator and the image is too complex to create a mask in Illustrator. I tried to save it as an EPS but "retain vector data" is grayed out.
View 2 Replies
View Related
Feb 22, 2006
and what are the advantages of using them?
View 9 Replies
View Related
Aug 6, 2009
when I'm drawing clipping paths around an object that has spaces within the image (i.e. space between someone's arm and body, or the space(s) within an object such as a coffee cup handle) does it not clip out the paths inside the outermost path? Do the inside paths need to be drawn first? I'm scratching my head here - it seems to be a CS4 thing, as other versions of PS have not seemed to do this...
View 2 Replies
View Related
Jun 25, 2009
I want to make a clipping path around a person who has hair blowing in the wind. How can I make a good clipping and get close enough without losing the effect?
View 4 Replies
View Related
Nov 20, 2007
I'm using Tiger and Photoshop CS2.
We are having a problem with one of our clipping paths. Once we convert the image into a compression image for use, the image does not appear at all. No path, no image no nothing. Any idea why this happened? I know that the designer who worked on the original file used the incorrect "path area" selection (at the top) but changed that.
View 5 Replies
View Related
Oct 2, 2008
I created a clipping path on a photo, clipping out a person's head so that I can have the person's head show up over the masthead on a cover.
But when I save the photo in Photoshop and then import it into Quark, the option where it says I can change the clipping options in Quark is greyed out.
This is what it says to possibly fix it on the Quark help page:
"You may want to choose "None" from the Clipping path pop-up menu when you save the image from Adobe Photoshop, so you can specify which path to use as the clipping path when you import the image into QuarkXPress. Or, you may want to choose a path from the Clipping path pop-up menu, so you can be sure only that path will be used to clip the image."
I don't understand what that refers to....I can't find anything like that in the Photoshop options.
My goal is to have the person's head over the text, with the rest of the photo still retained in the background. As it is now, I just get an import of the clipping path alone, with Quark substituting the background part of the photo with a white box.
View 1 Replies
View Related
Oct 16, 2012
In PS cs6 i cant find how to create clipping path for layer group (apply to folder from some shape layer with alt + drag&drop) created with pen, rectangle etc tools. Here is how it should look in cs6 but i don't know how to do that ?
View 5 Replies
View Related
Aug 30, 2012
Let me first say that I love using clipping path jpegs made in Photoshop. They can be used in InDesign of course, batched and converted to other formats which need transparency, and so on... The one irritating part is that there's no easy way to distort or scale the clipping path and image together after the file has been created, or at least not that I'm aware of.
For example, I'm working on a piece of furniture which already contains a clipping path, but the client wants the image straightened (or, the perspective from the camera removed, which I don't like actually). So, is there an easier/faster way to do this instead of having to first distort the image, then manually try to line up the clipping path, or worse, remake the clipping path?
View 2 Replies
View Related
Aug 22, 2013
All I have found so far, shows me how to hand draw a complex shape. I just need a circle. I can do this in a few minutes in CorelDRAW and Illustrator.
You must be able to do it in PhotoShop. The end result is - I want it to work like a ship porthole. All you can see is what is behind the port window.
View 8 Replies
View Related
Mar 8, 2012
I've been doing a lot of clipping paths lately and I'm considering purchasing Perfect Mask 5 from on One Software to make that process a little easier. It looks like Perfect Mask creates image masks. What are the advantages and disadvantages of each?
View 11 Replies
View Related
Dec 14, 2006
I am trying to get remove background from a portait of a woman.
the hair of the woman is curly and I want to maintain that. The image
will eventiually end up in InDesign.
I have been trying to extract the woman via MaskPro with not a lot of luck. Perhaps there is an alternate method.
The woman with wispy locks of hair then will go into InDesign with a gradient background
It is important to maintain the wispy locks of hair of woman so it looks realistic.
View 1 Replies
View Related
Nov 22, 2012
Is there a tool to create clipping path in image? A path tool? To use saved path afterwards in a desktop publishing software like Scribus?
Im using Xara Designer Pro X. No topics found in help(f1)...
View 9 Replies
View Related