Illustrator Live Trace Tips

Hi guys,
I have to make a colorful image into a black and white or at least one color silhouette for printing on a T-shirt. I tried Illustrator Live Trace which look nice -here is the sample-
http://www.pixentral.com/show.php?picture=1F4NmH9Q0D7IVqUDUeGPegdwKETC1
but when doing a close zoom the interesting texture has some bizarre effects like this one and all the
http://www.pixentral.com/show.php?picture=1NPI8WpLvPBttbbMCe3LmiKuZjcj4
This image will be printed in an A4 Size and i am worried that the detail could look strange. The other option is to use Photoshop.
Any special tips when using Live Trace, exporting a PDF and Printing?
Thanks for any info!
Cheers,
Sebs

As far as I know, that is conversion artifact inherent to Illustrator.
You have to put the work in if you want to avoid your art looking like it was done via Live Trace.
It can be tedious, but using the eraser tool, the direct selection tool to select/delete (is there, or will there ever be a keyboard shortcut for this?)
to delete some of those artifact, makes a huge difference.
You might try to bring it into Photoshop, throw a median over it, bring back into Illy, and retrace. Play with the 'smallest pixel detail that will be traced' thingy. Depends on the image, but either way, it is rare to convert a detailed image and have it perfect.
I'll follow this thread for any additional tips!

Similar Messages

  • Png Illustrator Live Trace Flash

    I'm rather new to Illustrator CS2 but I had a plan to take
    png images (with transparent backgrounds) into it from Photoshop
    and then using Live Trace convert them to vectors. I would then
    export them into Flash as swf files. (AI and AEP are huge. Or maybe
    I am missing something) It all worked great until I noticed that
    the swf files had a white background(like when you save a
    transparent psd as a jpeg and not a png.)
    My question is, is there a way to make and preserve
    transparent backgrounds from placed png images in Illustrator and
    Live Trace so that when I move them into Flash I have a "vector
    png" to work with? Thanks

    Found solution -After you have done the Live Trace In
    Illustrator CS2 , click on the background white object and go to
    the Select menu > Same > Fill Color. With all your white
    object selected, press the Delete key on your keyboard. Export as
    an .swf. Import into Flash and you have a vector copy (with
    transparent background) of your bitmap .png to play with. A "vector
    png"!
    Embarrassed by how little I know about Illustrator... But
    this might help someone

  • Script to Perform Live Trace then in Illustrator Run Action... Please Help

    Hello Everyone, I am brand new to scripting and need some help... I would like to create an inter-application javascript (.jsx) file that will perform the following steps in sequence:
    1) Target Bridge CS3 and:
    a) Automatically select files (thumbnails) (the names of, and path to these files never change so scripting them is no problem). Path & Files are: C:\files\1.psd, C:\files\2.psd and C:\files\3.psd.
    b) Run Tools > Illustrator > Live Trace [Live Trace Dialogue Box Settings (Tracing Preset: Color 16, Save & Close Results (checked), Document Profile: "Basic RGB", Width: "576", Height: "720", Units: Pixels, Destination: "C:\files\, File Naming: Document Name + .ai)].
    After Live Trace finishes, C:\files\1.ai, C:\files\2.ai and C:\files\3.ai are created.
    and then....
    2) Target Illustrator CS3 and:
    Run my Illustrator precreated Action: "Add Border". This action adds a precreated border to the files. The action is coded with the paths and file names of the .ai files as well as saving instructions.
    To summarize:
    1) In Bridge, run Live Trace on precreated .psd files
    2) In Illustrator run an action on the files that were live traced
    That's it. It seems straight forward when I write it out but trying to figure out how to script it is boggling my mind.
    Thank you for your help!

    I will go check that error meantime try this… The Photoshop export looks OK to me but I have no idea about SVG files as I don't use them… This should be getting closer… You will need to make the same 2 typo changes…
    #target illustrator
    while (app.documents.length) {
      app.activeDocument.close(SaveOptions.PROMPTTOSAVECHANGES);
    var traceFolder = new Folder ('~/Desktop/Live Trace/');
    var fileList = traceFolder.getFiles(/\.psd$/i);
    if (fileList.length > 0) {
         var svg = new Folder(traceFolder.fsName+'/SVG Files');
         if (!svg.exists) svg.create();
         var psd = new Folder(traceFolder.fsName+'/PSD Files');
         if (!psd.exists) psd.create();
         var ai = new Folder(traceFolder.fsName+'/AI Files');
         if (!ai.exists) ai.create();
         main(fileList);
    } else {
         alert('This Folder contained NO Photoshop PSD files!');
    function main(fileObjs) {
         with (app) {
              var orginalUIL = userInteractionLevel;
              userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
              for (var i = 0; i < fileObjs.length; i++) {
                   if (fileList[i] instanceof File) {
                        var fileName = fileList[i].name.slice(0, -4);
                        var docRef = documents.add(DocumentColorSpace.RGB, 576, 720);
                        with (docRef) {
                             var thisPlace = placedItems.add();
                             thisPlace.file = fileObjs[i];
                             var thisImage = placedItems[0].trace();
                             redraw();
                             thisImage.tracing.tracingOptions.loadFromPreset('Color 16');
                             thisImage.tracing.expandTracing();
                             redraw();
                             var svgOptions = exportAsSVGFile();
                             svgFilePath = new File(svg.fsName + '/' + fileName + '.svg');
                             exportFile(svgFilePath, ExportType.SVG, svgOptions);
                             var psdOptions = exportAsPSDFile();
                             psdFilePath = new File(psd.fsName + '/' + fileName + '.psd');
                             exportFile(psdFilePath, ExportType.PHOTOSHOP, psdOptions);
                             var aiOptions = saveAsAiFile();
                             aiFilePath = new File(ai.fsName + '/' + fileName + '.ai');
                             saveAs(aiFilePath, aiOptions);
                             close(SaveOptions.DONOTSAVECHANGES);                         
              userInteractionLevel = orginalUIL;
    function exportAsSVGFile() {
         var svgOptions = new ExportOptionsSVG();
         with (svgOptions) {
                compressed = true;
              coordinatePrecision = 3;
              //cssProperties = SVGCSSPropertyLocation.ENTITLES;
              documentEncoding = SVGDocumentEncoding.UTF16
              //DTD = SVGDTDVersionSVG1_0;
              embedRasterImages = true;
              fontSubsetting = SVGFontSubsetting.ALLGLYPHS;
              fontType = SVGFontType.CEFFONT;
              includeFileInfo = false;
              includeVariablesAndDatasets = false;
              optimizeForSVGViewer = true;
              preserveEditability = true;
              slices = true;
              sVGAutoKerning = true;
              sVGTextOnPath = true;
         return svgOptions;
    function exportAsPSDFile() {
         var psdOptions = new ExportOptionsPhotoshop();
         with (psdOptions) {
              antiAliasing = true;
              compatibility = PhotoshopCompatibility.PHOTOSHOP8;
              editableText = true;
              embedICCProfile = true;
              maximumEditability = true;
              resolution = 150;
              warnings = true;
              writeLayers = true;
         return psdOptions;
    function saveAsAiFile() {
         var aiOptions = new IllustratorSaveOptions();
         with (aiOptions) {
              compatibility = Compatibility.ILLUSTRATOR12;
              compressed = true;
              embedICCProfile = true;
              embedLinkedFiles = true;
              flattenOutput = OutputFlattening.PRESERVEAPPEARANCE;
              fontSubsetThreshold = 0;
              overprint = PDFOverprint.PRESERVEPDFOVERPRINT;
              pdfCompatible = true
         return aiOptions;

  • I am using Illustrator CS5, how do I remove white outline after live trace?

    I am working on a image that will be used as a sticker. I did all the painting in Photshop CS5. Now I want to create a cleaner image by making it a vector. My problem is when using Live Trace it comes out amazing. But this is in Illustrator. When i go and save it as a PDF or TIFF. It has a white line surrounding all the individual vectors.
    how do i remove these?
    I already did the Ignore White. I did not use the expand button, which is what the saved image looks like when i do press expand. Thats a No NO!
    All my settings are at 300 res. I also rasterized the image too. it still came out the same way.
    The image on the left i how it looks in illustrator. The left image is how it looks when it is opened as a jpeg or saved as a adobe PDF or Tiff.
    Thank you,
    Trojan

    These could be
    gaps due to differences in adjacent fill areas
    antialaising issues across adjacent items
    general trapping issues
    I'm afraid you'll have to do some reading up on all of that and invest some time in manuall cleaning up your documents to fix these problems. Though I honestly don't see the relevance. Your image being quite detailed eitehr way it would be printed using inkjet or classical CMYK processes and beyond the die line for the cutout there would be no need to use any vector data.
    Mylenium

  • Illustrator CS4 - Batch Live Trace all images in one directory?

    Hello everyone
    I have 200 pages or so scanned at the same resolution from a notepad, which I would like to vectorize.
    Since they're all pretty much similar I'd imagine the trace settings can be consistant for all of them
    I'd rather not Live trace each one in illustrator, would take ages..
    Is there a batch command for this or a recommended alternative method?
    Thank you!

    Yes, Bridge can do it as well, but as of CS5 it ignores the "Ignore White" option, and another user was advised to use Illustrator. I see this as a bug that needs to be repaired in Bridge. Else, why have the command? There are some other bugs associated with this and other batch commands that need to be fixed up. AI doesn't record "Live Trace" button action (you have to go to the menu item.) And it ignores "Fit Artboard to Artwork Bounds" as well.
    They really need to come up with an all-round universal solution to batch processing for the different products.

  • How can I simplify very complex illustrator file, multiple embedded live traces

    Hello!
    If anyone has any advice on this I'd be very grateful! I have created a piece of artwork in illustrator which is to be printed 4x3m for a wall mural. Therefore the file I am working with must either be a vecor or a large enough raster to be printed at such as size. I have set it up at 1 to 10 so its currently A3ish size. Each component of the collage is a separate ai file and contains many points as they are all live traces. It was no problem linking in all these initially but I now need to embed them so as I can give the printers a complete file. I have succeeded embedding every image apart from one last complex one which is crashing the whole thing. Are there any settings I may be able to change to reduce the file size or simplify the graphic (whilst remaining vectors.) Below is the file with the linked images and also the outline of the embedded version so far. The problem I am having is basically because of the final output size required.
    The only thing I can think of doing is opening each separate component and saving as a raster then relinking these - but will this be even more problematic for illustrator that thousands of vector points? I can do it in photoshop if needs be but as the final image is to be printed 4x3m will this be too large to handle? The ai file with all images linked was 25MB but now 500MB with the sky still to embed.
    Thank you!

    Rosie,
    4x3m is quite large, and the comfortable/relevant viewing distance is so much larger than the one you use to read this that you should be bold here, bolder than just saying 150DPI which may be used at normal reading distance depending on printing method.
    You may (literally) see it this way: the viewing angle is important: when you look at a larger image, you move back until you have a comfortable viewing angle, and at the same viewing angle, the viewing distance is proportional to the size. This means that you can determine how the actual final size in  pixel x pixel looks under a certain viewing angle at normal reading distance.

  • Illustrator cs3 unresponsive after live trace

    after placing an .psd image into illustrator and using
    live trace function, illustrator will only let me save the file. after saving i have to quit
    and restart to work on the file again. this process continues on certain lar
    ge files. what gives? thanks in advance!

    w/ 2gb ram
    Not particularly much. Even if AI itself as a 32bit application never uses more than 2GB, it doesn't have it all on your system. You know, operating system and other stuff taking memory, too.... Quite clearly on a heavy live trace with lots of anchor points and paths this could be too much. If it's an option, you might consider a selective approach, i.e. working at lower image resolutions if something is only a large area or by extracting specific features in Photoshop by turning the image into greyscale/ limited color palette images. while there, you may also use selections and convert them into paths, which you then could copy&paste into AI.
    Mylenium

  • Does Photoshop Elements have a live trace tool like Illustrator?

    I use Illustrator at school but annoyingly only have Elements at home, and six weeks of school holidays in which I need to use the Live Trace tool... Does anyone know where the equivilent tool would be in either Elements or Photoshop, or if one even exists?

    It doesn't exist in PSE (or any image editing program).  Tracing is a feature of vector editing programs because it creates vector shape(s).
    Ken

  • Can Live Trace be added back for complex B&W illustration vectorizing?

    Image Trace might work great for vectorizing color photos, but it is terrible at vectorizing complex B&W illustrations. Live Trace in CS2-CS5 was great at this. It's crazy that a new feature would break a previous functionality.
    This is a pen & ink style illustration I was going to vectorize so that it would be easier to set up for a t-shirt:
    As you can see from this comparison image, Live Trace does a much better job at converting this illustration to vector. It's very close to the original and has a very clean appearance. After trying every setting possible, this is the best result I could manage in Image Trace:
    It seems like Image Trace can't handle the complexity that Live Trace used to work so well with. I noticed if I cropped out just the chicken, Image Trace did a better job with just that part of it. Live Trace could handle the entire thing, though, and cropping an image in to sections just adds more steps and more work.
    Whatever engine Live Trace used to have, please please please add it back in for B&W art vectorizing. Right now I have to keep my old copy of CS4 installed just so I can use Live Trace. It seems like this is a problem that people have been mentioning: http://forums.adobe.com/message/5908553

    Thanks for taking the time to comment, rcraighead.
    Your version does look better, I agree, but the higher threshold is filling in a lot of details with black (like the eyes). The feathered lines are also rounding off at the ends, which happens in Image Trace, but never was a problem in Live Trace. It kind of gives it a "stamped" feel, like the ink is bleeding over.
    The original image is about 8.5 x 11, 300 ppi. I guess I'll just have to keep CS4 installed to use Live Trace. I tweeted at Adobe Illustrator with my issue and they told me to post here

  • Illustrator CS5 Live Trace stuck at "Tracing"

    I'm trying to "Live Trace" an image and AI says "Tracing" in the layers pane and just sits there forever. See image below:
    Any help will be greatly appreciated. Thanks!

    What do you expect it to do? Have you tried using Expand from the object menu?

  • Single ink line =single uniform traced line in Live Trace? Nope.

    I'm using AI CS5 and I'm trying unsuccessfully to get a Technical Drawing result with ONE single traced uniform-thickness line from a single scanned drawn line in a Photoshop file. I am trying to NOT get a calligraphic line that runs thin-blob-thicker-blob-thin again, then becomes two parallel hairlines, then goes back to thick-thin. It may look hand-drawn and artsy; that's fine, but it isn't what I'm hoping for. I want a single standardized 1pt path with no double (supposedly outlined) sections. That's all I can get using the furshlugginer "Technical drawing" setting. Is that normal? If so, boy, have I got a feature request for Adobe! I realize that there will be occasional corners and feet that will become traced blobs that I will need to lop off, and I can handle that, but how do I draw a single line, scan it, then, in Live trace, achieve a single uniform line, like most of the actual, real, technical drawings I have seen? Or do I have a problematic copy of CS5?

    Thanks, Steve. After my frustrtion and outrage subsided I checked out a dimly-related forum topic and found it very helpful: "uniform lines in a vector image". Your point was well made, plus two more: Set the Max line width wide enough so that no blob or corner exceeds it, e.g., 30pt is around a quarter of an inch; if I set the line width max at 30 pts I'm likely to wind up with a clean, uniform 30pt line without blobs, from which I can simply assign a thinner weight, such as 1 pt. The other tip is to blur the original raster line slightly, so as to suggest a centerline, blurred at its edges; Live Trace will zero in on the phony "centerline". Is there a "use centerline" setting in Live trace? I seem to remember that there was one in Autotrace and in Streamline, but I'm unable to find one in Live Trace. Frankly, the value of the "options" presented in the Live Trace pallet isn't particularly obvious. I looked through the Illustrator Classroom in a Book, and was told to "experiment with all the options", but not how to get any particular result. In the end, the settings can be used to get the results I was looking for, but I had to do some serious digging, without much help from the documentation. I would think that getting one traced vector line from one raster line would be a natural place to start. Guess not.

  • Results in Image Trace don't match Live Trace

    I just started using CS6, jumping from CS3. A major tool I use is Live Trace, and I have custom settings for that. I cannot find a way to make Image Trace behave the way Live Trace did for black and white line drawings. The results I get in CS6 are far inferior to those I got in CS3 in terms of retaining the look of the original raster image. Help would be greatly appreciated. Otherwise, I will have to leave CS3 installed just to do my Live Trace.
    Here is a sample of what I mean. You can see the quality degredation in CS6 compared to CS3. (And it's much more obvious when it's full size and full resolution.)
    My settings used in Live Trace (CS3) were:
    The settings I tried in CS6 that gave the above result were:
    Thanks for the help!

    I was very dissapointed to find out that CS6 is much inferior to CS5 or earlier versions when tracing black and white line drawings or comic art. By the way many users are of the same opinion. Here is a review of CS6 vs CS5 tracing results:
    http://vector.tutsplus.com/tutorials/tools-tips/quick-tip-how-to-use-the-new-image-trace-i n-adobe-illustrator-cs6/
    And here is my own experience. Whatever settings I try in CS6 the result is just terrible. This one is the best I could get. Details are lost. Lines are very thick.
    In comparison, here is how wonderfully the same work is done by CS5, not to mention that I didn't even have to tackle with any settings at all. Just clicked the button Live Trace and got saticfactory results with the default preset.
    These are original unreduced files:
    https://dl.dropbox.com/u/61392902/Illustrator%20Bugs/Traced_in_CS5.jpg
    https://dl.dropbox.com/u/61392902/Illustrator%20Bugs/Traced_in_CS6.jpg
    https://dl.dropbox.com/u/61392902/Illustrator%20Bugs/Original_Raster_Drawing.jpg
    P.S. It is sometimes possible to get good results in CS6, if you take the big drawing apart into small separate drawings. However it means a lot of additional work: tens of extra hours in a year in fact. Which, of coarse, undoubtfully means that CS6 is a step backwards if compared with CS5.
    Besides some big complex drawings with many details can not be devided into a smaller ones. And if you don't have an earlier version of the program, in this case there is no way to get a quality trace at all!

  • How can I live trace a hand sketch line work and cut from background to apply to new coloured backgr

    I placed a hand drawn scanned photo of artwork to illustrator cs4 in an attempt to trace the lines and remove from paper and add the line drawing to a brochure artwork. this to give illusion of an old artist's manuscript with drawings. first attempt with the psd file in trying to apply trace as a "hand drawn " method crashed illustrator. I tried again and used ink drawing which came out blotchy. Tried simple trace and got a warning that the file was too large. I'm thinking that the drawing itself is very soft and the paper around it is grainy and dim. I had tried to brighten   and lighten in the scan mode.I did get it as far as a trace at one point and used outline stroke but then couln't fill in the lines or cut it out. I have taken it to photoshop and drew a pen selection around the soft lines and used a transparent background on it, hoping to stroke it in illustrator and drag it off over to the brochure template .But didn't try it yet. I also just made the resolution 250 and the size document to 6 x 9 in approx. But now am fearful of another experiemental attempt. Am I on the right track or is there another method to bringing in a line drawing that is not defined well and getting it to trace and remove from it's background to apply onto the illustrator document being worked on. I have done placing and tracing before but not a line work. Any suggestions that won't crash my program would be welcome. As an artist I will want to do this again and again so want to know the proper method or what I am missing. I've been using illustrator for 7 months now.

    Maybe Li[ve trace] is not t]he way[ to go
    I have some suggestion one leave it as is and use a blending mode of multiply to give it a color background like this
    leave it as is make it a grayscale tiff import int Illustrator and color it it in Illustrator like this
    Or trace over it with the brush tool aand then give it a color ground.
    Or do the original over and do a cleaner job with no tone or a minimum of tone. Then Live trace.

  • Stroking and filling doesn't work in paths expanded from Live Trace

    I’m using Adobe Illustrator CS4. I’m a complete beginner, though I’ve done a bit of reading about the basics. 
    After tracing a bitmap image (of black letters on a transparent background, in pdf format) using Live Trace, expanding it, and editing the paths with the pen tool to my satisfaction, I find neither fills nor strokes appear -- I can change the fill settings or stroke settings, but the paths just stay the colour of all unfilled paths on that layer. (I’m viewing the document in preview mode.) Also, when selecting paths with either the Selection tool or the Direct Selection tool and then trying to use Live Paint, I get a notification that "the selection contains objects that cannot be converted. Live Paint groups can only contain paths and compound paths. Clipping paths are not allowed." When I go to the Object Menu, under Clipping Mask the only available option is "Make Mask", and "Release" and "Edit Mask" are greyed out, which suggests to me there are no clipping masks present. 
    I’ve created a separate, nearly identical document where strokes, fills and Live Paint work fine. The only difference is that when I used Live Trace on the bitmap image, for the non-working document I selected "Outlines" for the Vector section of the View options (in the Tracing Options dialogue box), and in the working one I selected "Tracing Result" instead. For both, I used the same original document settings, placed the same bitmap image, used the Live Trace preset "Black and White Logo" with all the default settings except that I checked the "Ignore White" box, and then clicked Expand.
    Obviously, I know what I did wrong, though I don’t know why it made a difference. But since I spent many hours editing the paths in the screwed-up document before I realized stroking and filling wouldn’t show up, is there a way to fix it? How can I make the paths "valid" for stroking, filling, and Live Paint -- or, failing that, is there a way to somehow copy or automatically trace the shape of the paths, so I don’t have to do all that editing again? 
    This is kind of urgent, since I’m creating a logo for a project that needs to be finished soon. Any help would be greatly appreciated! I could send someone the document by e-mail if you wanted to look at it properly -- since I’m a beginner, I don’t know what I need to describe.

    Never mind! I fixed it. For anyone else who has this same problem -- apparently, I’d made it so the paths were actually guides, which can look like and possess the properties of paths but which don’t show when you print. After going to View, Guides, Release Guides, the fills and strokes manifested, and the paths became "valid".

  • How can I select and delete the fill color (white background) of a live trace (B&W) with in an actio

    How can I select and delete the fill color (white background) of a live trace (B&W) with in an action set?
    Illustrator CS4 in windows XP.

    Maybe Li[ve trace] is not t]he way[ to go
    I have some suggestion one leave it as is and use a blending mode of multiply to give it a color background like this
    leave it as is make it a grayscale tiff import int Illustrator and color it it in Illustrator like this
    Or trace over it with the brush tool aand then give it a color ground.
    Or do the original over and do a cleaner job with no tone or a minimum of tone. Then Live trace.

Maybe you are looking for

  • What are the APN values for Blackberry 9630 Tour?

    I have an application to communicate with my server, what are the values I need to set the APN Settings?

  • Problem using namespace of XML docs gerenrated by  XMLForm

    Hi community! I am facing a problem using namespace within a XSL stylsheet. Let me describe my problem: I am using the SAP XMLFormsBuilder within the SAP EnterprisePortal in order to provide a HTML based form for creating and editing specific XML doc

  • How to store images in IndexedDB with possible same key name?

    The question is a little abstract so let me explain. Suppose I make a webpage solely for offline use, say an Image Viewer so that users can view their photos full screen. The user has the option to either select files or drag n drop files https://dev

  • Header and item data in LSMW

    How to distinguish between the header and item data from the given legacy excel file, so that I can correctly extract the Sales Order header and item level data while doing LSMW? Do we need to do any extra coding for doing that?

  • Drop Caps PDF export problem

    When I export the document I'm working on, all of my drop caps change slightly. I've attached an image showing the IND (CS5) layout, and on the right the exported PDF change to the drop caps. They have been set up using styles with drop caps that use