Is this achievable in Illustrator

Hi All,
The below picture is off the internet, however Im wanting to recreate this sort of effect (not same idea) and wondering if this is achievable in Illustrator or if the artist used another program. Any thoughts?
Much Thanks,

Hello Smart_77
I tried this as an exercise, my example is a little crude, however it is quite easy to reproduce.
Items Used: (Angle based on 45 Degrees)
Rectangle Tool
Shear Tool
Graduation Colours
Gradient Tool
Rounded Corners
Direct Selection Tool
Selection Tool
Type
TREX

Similar Messages

  • Can i use this script in illustrator?

    can i use this script in illustrator?
    Newsgroup_User

    // This script exports extended layer.bounds information to [psd_file_name].xml
    // by pattesdours
    function docCheck() {
        // ensure that there is at least one document open
        if (!documents.length) {
            alert('There are no documents open.');
            return; // quit
    docCheck();
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    var docRef = activeDocument;
    var docWidth = docRef.width.value;
    var docHeight = docRef.height.value;
    var mySourceFilePath = activeDocument.fullName.path + "/";
    //  Code to get layer index / descriptor
    cTID = function(s) { return app.charIDToTypeID(s); };
    sTID = function(s) { return app.stringIDToTypeID(s); };
    function getLayerDescriptor (doc, layer) {
        var ref = new ActionReference();
        ref.putEnumerated(cTID("Lyr "), cTID("Ordn"), cTID("Trgt"));
        return executeActionGet(ref)
    function getLayerID(doc, layer) {
      var d = getLayerDescriptor(doc, layer);
      return d.getInteger(cTID('LyrI'));
    var stackorder = 0;
    // function from Xbytor to traverse all layers
    traverseLayers = function(doc, ftn, reverse) {
      function _traverse(doc, layers, ftn, reverse) {
        var ok = true;
        for (var i = 1; i <= layers.length && ok != false; i++) {
          var index = (reverse == true) ? layers.length-i : i - 1;
          var layer = layers[index];
          //  alert("layer.typename  >>> "+layer.typename ); 
          if (layer.typename == "LayerSet") {
            ok = _traverse(doc, layer.layers, ftn, reverse);
          } else {
      stackorder = stackorder + 1;
            ok = ftn(doc, layer, stackorder);
        return ok;
      return _traverse(doc, doc.layers, ftn, reverse);
    // create a string to hold the data
    var str ="";
    // class using a contructor
    function cLayer(doc, layer) {
    //this.layerID = Stdlib.getLayerID(doc, layer);
      this.layerID = getLayerID(doc, layer);
      //alert("layer ID: " + this.layerID);
      this.layerWidth = layer.bounds[2].value - layer.bounds[0].value;
          this.layerHeight = layer.bounds[3].value - layer.bounds[1].value;
      // these return object coordinates relative to canvas
          this.upperLeftX = layer.bounds[0].value;
          this.upperLeftY = layer.bounds[1].value;
          this.upperCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.upperCenterY = layer.bounds[1].value;
          this.upperRightX = layer.bounds[2].value;
          this.upperRightY = layer.bounds[1].value;
          this.middleLeftX = layer.bounds[0].value;
          this.middleLeftY = this.layerHeight / 2 + layer.bounds[1].value;
          this.middleCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.middleCenterY = this.layerHeight / 2 + layer.bounds[1].value;
          this.middleRightX = layer.bounds[2].value;
          this.middleRightY = this.layerHeight / 2 + layer.bounds[1].value;
          this.lowerLeftX = layer.bounds[0].value;
          this.lowerLeftY = layer.bounds[3].value;
          this.lowerCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.lowerCenterY = layer.bounds[3].value;
          this.lowerRightX = layer.bounds[2].value;
          this.lowerRightY = layer.bounds[3].value;
       // I'm adding these for easier editing of flash symbol transformation point (outputs a 'x, y' format)
       // because I like to assign shortcut keys that use the numeric pad keyboard, like such:
       // 7 8 9
       // 4 5 6
       // 1 2 3
          var windowW=2048;
          var windowH=1536;
       this.leftBottom = this.lowerLeftX + ", " + (windowH-this.lowerLeftY);
       this.bottomCenter = this.lowerCenterX + ", " +  (windowH-this.lowerCenterY);
       this.rightBottom = this.lowerRightX + ", " + this.lowerRightY;
       this.leftCenter = this.middleLeftX + ", " + this.middleLeftY;
       this.center = this.middleCenterX + ", " + this.middleCenterY;
       this.rightCenter = this.middleRightX + ", " + this.middleRightY;
       this.leftTop = this.upperLeftX + ", " + this.upperLeftY;
       this.topCenter = this.upperCenterX + ", " + this.upperCenterY;
       this.rightTop = this.upperRightX + ", " + this.upperRightY;
      // these return object coordinates relative to layer bounds
          this.relUpperLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relUpperLeftY =  layer.bounds[0].value - layer.bounds[0].value;
          this.relUpperCenterX = this.layerWidth / 2;
          this.relUpperCenterY = layer.bounds[0].value - layer.bounds[0].value;
          this.relUpperRightX = this.layerWidth;
          this.relUpperRightY = layer.bounds[0].value - layer.bounds[0].value;
          this.relMiddleLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relMiddleLeftY = this.layerHeight / 2;
          this.relMiddleCenterX = this.layerWidth / 2;
          this.relMiddleCenterY = this.layerHeight / 2;
          this.relMiddleRightX = this.layerWidth;
      this.relMiddleRightY = this.layerHeight / 2;
          this.relLowerLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relLowerLeftY = this.layerHeight;
          this.relLowerCenterX = this.layerWidth / 2;
      this.relLowerCenterY = this.layerHeight / 2;
          this.relLowerRightY = this.layerHeight;
          this.relLowerRightX = this.layerWidth;
          this.relLowerRightY = this.layerHeight;
      return this;
    // add header line
    str = "<psd filename=\"" + docRef.name + "\" path=\"" + mySourceFilePath + "\" width=\"" + docWidth + "\" height=\"" + docHeight + "\">\n";
    // now a function to collect the data
    var isParentAvailable=false;
    var prevLayerSetName="";
    function exportBounds(doc, layer, i) {
        var isVisible = layer.visible;
        var layerData = cLayer(doc, layer);
    //alert("layer.name  >>> "+layer.name );
    //alert("typename >>> "+layer.typename);
    /*if(layer.parent.name == "ParentTest"){
    for(var i in layer.parent){
        alert(" III >>> "+i+"<<<layer.parent>>"+layer.parent[i]);
      if(isVisible){
    // Layer object main coordinates relative to its active pixels
    var startStr="";
        if(layer.parent.typename=="LayerSet"){
            if(prevLayerSetName!="LayerSet")    {
                startStr="\t<parentlayer id='"+layer.parent.name+"'>\n\t";
            }else{
                   startStr="\t";
            // endStr="\t</parentlayer>\n";
             prevLayerSetName=layer.parent.typename;
          }else{
               if(prevLayerSetName=="LayerSet"){
                    startStr="\t</parentlayer>\n";
                prevLayerSetName="";
      var positionStr=layer.name.split(".")[0].substr(layer.name.split(".")[0].length-3,layer.name. split(".")[0].length);
      var assetPosition=leftTop;
      if(positionStr=="L_B"){
      assetPosition=leftBottom;
      }else if(positionStr=="B_C"){
      assetPosition=bottomCenter;
      }else if(positionStr=="R_B"){
      assetPosition=rightBottom;
      }else if(positionStr=="L_C"){
      assetPosition=leftCenter;
      }else if(positionStr=="C"){
      assetPosition=center;
      }else if(positionStr=="R_C"){
      assetPosition=rightCenter;
      }else if(positionStr=="L_T"){
      assetPosition=leftTop;
      }else if(positionStr=="T_C"){
      assetPosition=topCenter;
      }else if(positionStr=="R_T"){
      assetPosition=rightTop;
      var str2 =startStr+ "\t<layer name=\"" + layer.name
      + "\" stack=\"" + (i - 1) // order in which layers are stacked, starting with zero for the bottom-most layer
      + "\" position=\"" + assetPosition // this is the
      + "\" layerwidth=\"" + layerData.layerWidth
      + "\" layerheight=\"" + layerData.layerHeight
      + "\" transformpoint=\"" + "center" + "\">" // hard-coding 'center' as the default transformation point
      + layer.name + ".png" + "</layer>\n" // I have to put some content here otherwise sometimes tags are ignored
    str += str2.toString();
    // call X's function using the one above
    traverseLayers(app.activeDocument, exportBounds, true);
    // Use this to export XML file to same directory where PSD file is located
        var mySourceFilePath = activeDocument.fullName.path + "/";
    // create a reference to a file for output
        var csvFile = new File(mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".xml");
    // open the file, write the data, then close the file
    csvFile.open('w');
    csvFile.writeln(str + "</psd>");
    csvFile.close();
    preferences.rulerUnits = originalRulerUnits;
    // Confirm that operation has completed
    alert("Operation Complete!" + "\n" + "Layer coordinates were successfully exported to:" + "\n" + "\n" + mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".xml");

  • How is this type of drop shadow achieved in Illustrator?

    This drop shadow was made in another program. I want to know how to achieve it in Illustrator.
    I also want the grey area to be solid shapes. Not a blend.
    Any insight is much appreciated.

    You are referring to it as a drop shadow when it is is actually type represented as a dimensional form.
    So it either has to be faked or you have to give it a very slight aampount of rotation either horizontally or verticlly or both.
    Or a perspective

  • How do I create this look in illustrator....

    I'm recreating some vintage art and am trying to get this spray paint look. Any suggestions on how to go about achieving this look (see photo) in illustrator?
    I'm currently running CS4 (I'm on my work computer)....
    [URL=http://imageshack.us/photo/my-images/23/aaaov.jpg/][IMG]http://img23.imageshack.us/img23/4 728/aaaov.jpg[/IMG][/URL]
    - I've tried looking in the preset brushes, no luck!
    - I've tried creating my own brush using vector spray paint, no luck!
    - I've tried looking for illustrator brushes online, no luck!
    This seems like a very simple effect to do, I know how to create this look in photoshop but I need this to be vector. Any suggestions would be great!
    Thanks guys!

    First...
    There is nothing wrong with a 1-bit diffusion dither object being raster, as far as printing results is concerned. Such images date back to the days of MacPaint and Hypercard. They are same-size (historically usually 1-point) pixels, randomly distributed at varying frequencies to suggest tones (as opposed to individual printer spots being combined to build varying size halftone dots).
    So if the tiny squares are vector, yes, they are scaleable. But so are 1-bit pixels. When you scale a 1-bit raster, you're scaling square pixels, which are printed as squares. So a scaled 1-bit raster image is just as "resolution independent" as a bunch of vector squares.
    Second...
    This effect was employed in illustrations and designs since the very beginning of desktop publishing. For example, I frequently used it in the 80s thusly:
    1. Draw a vector path of any shape in FreeHand.
    2. Copy it to Photoshop. Blur it. Convert to 1-bit using diffusion dither. Save it as TIFF.
    3. Import into FreeHand. Stack it below the object for which it served as a glow or drop shadow.
    FreeHand had the ability to apply any color to a 1-bit or grayscale raster image, and the ability to set the white pixels of a 1-bit image to transparent. Illustrator didn't gain those abilities until decades later.
    So it's not oppressively tedious to use that method nowadays, even in Illustrator. (And frankly, that's the way I'd do it.)
    Third...
    Illustrator sorely needs to provided a diffusion dither option in its Rasterize command for 1-bit color depth (as I've been arguing for years) instead of its lame pattern diffusion. Then this effect could be applied easily and quickly to any object, either as a "nailed down" rasterization, or as a live effect.
    However...
    You can simulate a vector diffusion dither pattern that you can apply to any path by combining several Scatter Brushes and storing their combined application as a Graphic Style:
    1. Draw a 1 point square.
    2. Store it as a Scatter Brush. Set the Spacing and Scatter settings to Random. To constrain the pattern to one side of the path to which it is applied, set the low limit of Scatter to zero.
    3. Duplicate the Scatter Brush two or more times, changing the Spacing and Scatter upper limits in each duplicate so as to make each duplicate Brush increasingly sparse. In the example shown, the first Brush is named Scatter Brush 1 and has its upper limits for Spacing and Scatter to 300. This Brush was duplicated twice, and those two values doubled each time. But of course you can use whatever settings work for the effect you want.
    4. Draw a temporary path with a 1-point stroke. Apply Scatter Brush 1. Select the Stroke Appearance and duplciate it. Apply Scatter Brush 2 to it. Duplicate the Stroke Appearance again, and apply Scatter Brush 3 to it.
    5. Drag the whole path and drop it into the Graphic Styles palette to define a new Graphic Style. Now you can apply the whole Appearance stack to any other path(s) with one click.
    Being Brushes, the fineness of the pattern can be adjusted by changing the weight of the strokes:
    And, of course, you can apply other effects to the Brushes and strokes involved. For example, set the Colorization Mode of the Brushes to be able to change the color of the dither pattern; and/or apply Transform Effect to offset the pattern from the object to which it is applied (as for dithered drop shadows).
    JET

  • How can I creat this texture in illustrator

    hello
    I'm using illustrator CS5 and i want to creat an art brush with applying this texture in it. as you can see in the picture
    this is my first try but i was not satisfied with this result
    i zoom it in > it is consist of small squares with diffirent colors
    i hope you get what i mean,
    plz reply as soon as possible
    thanks in advance

    Art brushes in Illustrator CS5 can only contain vector artwork. So it will be very difficult to achieve what you want.
    You can try to use live trace to get a vector version of your image, but you need to simplify it.
    Depending on what you need this for, there might be better methods than a brush.

  • How can I accomplish this effect in Illustrator?

    I'm obsessed with the linocuts like this one:
    http://fc03.deviantart.com/fs37/f/2008/262/e/5/Mark_andrew_webber_1_by_dexter121uk.jpg
    Can any make a suggestion on how I'd go about creating this with Illustrator?
    I'd imagine I could create two diagonal lines and create a blend, expand, then distort the lines with the warp tool. But how to "freeze" the text-y parts so they warp differently? Any ideas?

    This was a linocut so it's not vector, but I see what you're saying...I could create text outlines, "Divide" the paths with them in Pathfinder, and then warp those lines independently.

  • How can I do this flare in Illustrator?

    Need to recreate a logo which I think it was originally done in Photoshop, but I prefer the sharp edged vectors of Illustrator for the main part of the logo.
    Please ignore all the greeny blue pink rubbish. What I want to recreate is the white flare with several long white rays shooting out.
    I have tried using the flare tool in Illustrator (for the first time in my life) without much success, especially unsuccessful with removing the colour. Searching for flare tool in Illustrator forum did not bring up any results.
    Thanks for any help.

    So I should do this in Photoshop, or will the rastered flare still cause problems? Should I tell the client that the raster effect will not work when printed. At the moment, its just for business cards and for use on the Internet.
    James,
    You call this a "logo." The rampant overuse of this word (especially by beginners and amateurs--and no, I'm not saying you are either) is one of my pet peeves.
    A proper logo is the cornerstone identity graphic of a commercial entity or product. It serves as the pristine "master" for all occurrances of the entity's mark. It is therefore built with exacting care, accuracy, and technical efficiency. It is also built to technically accommodate as many repro environments as possible to ensure consistent integrity to the design and reproduction quality. Its use is strictly controlled by its owner.
    That's what separates proper logo design from amateurish, sloppily-built "wannabe" graphics and makes it recognizable among the deafening garbage-filled roar of the marketplace. A proper logo is key to a business's success.
    That's why proper logo designs (among other things) consist entirely of fully-optimized vector line art whenever possible. They contain no application-specific "live tricks" that create substandard repro problems, or which cause the client delays and anguish in the across-the-board media and reproduction environments in which they are surely to be needed. They usually also avoid any use of halftone-dependent effects like fuzzy shadows and contone grads. A logo needs to be built to repro standards for everything from newsprint ads to glossy brochures; from web page to television ads, from vehicle wraps to polo-shirt embroidery; from storefront signage to engraving on a writing pen--and much more.
    So that said...
    No, I would not do this in Photoshop, unless there something in the design that just must be done as a raster image. And as explained above, that requirement is to be avoided whenever possible even at the sacrifice of the designer's infactuation with a raster effect. If a designer doesn't know how to attractively suggest the complex with elegant simplicity--well, then the designer is not a logo designer; that's what logo design is all about.
    For me to recommend and demonstrate exactly how I would build the identity mark you have described would require answers to questions which, frankly, you should have been considering long before the day before deadline, such as:
    How do you intend that specular highlight graphic to interact with whatever backgrounds it may need to occur on? For example, you mention only print (business cards) and monitor (internet). That doesn't tell me much. Will the business cards just show the graphic and text on the white stock? If so, what's supposed to happen with those portions of the white flare that spill over onto the white background?  That design is going to be pretty limiting if it always requires a non-white background, unless you make the non-white background part of the graphic itself.
    Not having any details, I would just offer these general guidelines regarding logo design:
    Forget any pet effects. A highlight star itself is not going to impress anyone. There's nothing distinctive about it, or any other such effect, no matter how you decide to render it. Whatever you come up with thinking that way will not be anything the jaded viewing audience hasn't already seen a million times before.
    Think only about the message. Boil it down to its essence. Then come up with a distinctive and attractive way to convey that essence with as much elegant simplicity as you can.
    Force yourself to be ruthlessly objective with yourself. No matter how much you "like" something toss it out if it is superfluous to the message. Ask yourself: "Why am I having to resort to a flare sparkle [or drop shadow, or grad, or...) in this attempt to come up with what should be a distinctive identity mark?"
    Think of all the household-word logos you can, which you would instantly recognize anywhere. Then ask yourself: "How many of these employ any gratuitous, overused effect (sparkle, drop shadow, etc.) as an element of the logo proper? Dell? Pepsi? Adobe? Toyota? AutoZone? Prudential?
    I know; I know...You're deadline is tomorrow and you just want to know how to draw a sparkle. Answer the questions regarding background treatment. Also ask yourself: "How can I suggest the essence of "sparkle" or "reflection flare" with hard-edged line-art shapes?"
    JET

  • Is this achievable, with current technology?

    I have an idea for a layout, but was wondering if it was
    technically
    achievable.
    Easy part :
    - Centered fixed-width design (let's say 770px wide, 100%
    high).
    - Left side (335px) is empty. Right side (335px) is a text
    column.
    - Normal browser vertical scrolling to accomodate long pages.
    So far so good -- but here's where it gets touchy...
    - The background image is actually much larger than 335px. It
    extents
    off-screen to the left, so that if you pull the browser
    wider, more of it
    becomes uncovered (naturally, because it's a centered design,
    an equal
    amount of "blank" becomes uncovered to the right of the
    text).
    - The background image must not generate any scrollbars.
    - The image should never slide under the text -- but it can
    slide away from
    it if need be. This means that no more than 335px of it can
    slide into the
    centered layout... more than that, and it touches the text
    column.
    Can this be done? The closest I've come to succeeding is
    left-justifying a
    huge background image with no-repeat, but this doesn't stop
    it from sliding
    under the text.
    Should I be centering an enormous background with half of it
    being
    transparent information? That's the only other way I can
    think of... but to
    even do that would mean using PNGs, and the file size would
    be ridiculously
    huge, since it would have to be twice the width of the tree
    image itself.

    "Joe Makowiec" <[email protected]> wrote in
    message
    news:[email protected]..
    >
    > Just make the image 2 * X wide, and put the portion you
    want revealed
    > to the left of center. Then set it to position "top
    center"
    > (vertical/horizontal), thus:
    >
    > body {
    > background-image : url(myimage.png) ;
    > background-repeat : repeat-y ;
    > background-position : top center ;
    > }
    I thought of that, but the resulting image would be GIGANTIC.
    I was
    wondering if there was a way to do it with only the left half
    (the one with
    actual image data).
    The actual background of the site is a vertical gradient (not
    a solid
    color). A single GIF with 200 hues making up a gradient, 1px
    wide, repeating
    on X only, and only 7k in weight. So if I tried it the
    obvious way (the one
    you suggested) it would have to be a gigantic GIF (so the
    colors match --
    when one background ends, the other picks up) or a JPG
    (compression would
    almost ensure the gradient be banding at that size) or,
    finally, a PNG (I
    could use alpha channels here to make most of the image
    invisible, thus
    taking care of the gradient vs gradient problem... but can
    you imagine a
    1600x1200 PNG file? It must easily be over a meg large).
    Ideally, I'd place the PNG a bit to the left, with only the
    part with actual
    data on file (800px instead of 1600). But I'm not sure
    there's a way to do
    "center image, but make it 400px off-axis to the left" so as
    to "feign" the
    presence of 800 invisible pixels on the right of the image.
    Sorry if I'm not being as clear as I'd like, I'm just not
    used to explaining
    this type of stuff. It's all very clear in my head, honest.
    Mike

  • What do you think of this vector based illustration that I made?

    TTell me what I need to work on and how. Thanks in advance.

    Your trace over the image is fairly accurate as regards the trace. Here I removed most of the color and laid it over the photo.
    Your treatment of the subject is flat, uninspiring, don't ya think?
    One way of rectifying that is to use mesh fills so you can add highlights, darker regions and "easily" modify them as you go. This would give the drawing some dimension. You could also go for making a bazillion polygons to go for a more modernistic interpretation.
    But we have no idea of what you are wanting to achieve. It would be easier (and more time effective on our part), if you pointed to similar drawings that you wanted to emulate. Else we could give a hundred ways of drawing it that do not fit your goals, whatever they are.
    Mike

  • How is This Achieved?

    Hello there,
    On the Apple website (link provided below), on the reseller
    part of the page (far right), there's a search field, now field has
    rounded corners, and this seems to be recognized as a whole field
    on Mac - I currently use CSS to style rounded corners but the one
    on the Apple site is much more intuitive.
    I would be greatly for any advice and help.
    Regards,
    Kriss (UK).
    Link to the Apple
    Page

    "Michael Fesser" <[email protected]> wrote in message
    news:[email protected]..
    > .oO(Coxdabd)
    >
    >> On the Apple website (link provided below), on the
    reseller part of the
    >> page
    >>(far right), there's a search field, now field has
    rounded corners, and
    >>this
    >>seems to be recognized as a whole field on Mac - I
    currently use CSS to
    >>style
    >>rounded corners but the one on the Apple site is much
    more intuitive.
    >
    > It's a normal input field, some JavaScript, some CSS and
    a handful of
    > images. The resulting markup looks like this:
    >
    > <div class="search-wrapper empty">
    > <span class="left"/>
    > <input type="search" name="q" id="sp-searchtext"
    class="g-prettysearch
    > applesearch" accesskey="s" autocomplete="off"/>
    > <span class="right"/>
    > <div class="reset"/>
    > </div>
    Their markup is so ugly, it's unbelievable.
    The snippet above is wrapped in a label with a for attribute,
    the input type
    value is "search", the class "empty" is plugged in there
    everytime the box
    loses focus and they do not use a sprite image to minimize
    HTTP request...
    Imho, they have more nodes than they need to achieve that
    design and
    functionality. And we're only looking at a small part of the
    document...
    I guess it's all about design ;-)
    Thierry | Adobe Community Expert | Articles and Tutorials ::
    http://www.TJKDesign.com/go/?0
    Spry Widgets |
    http://labs.adobe.com/technologies/spry/samples/
    [click on
    "Widgets"]
    Spry Menu Bar samples |
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html

  • How can I get this effect in Illustrator

    I did a logo for a Barber Shop and the logo looks very plain. I was thinking about adding more detail to it like in the photo below. (Arrows point to the effect I'm trying to achieve.) Thanks in advance.

    Gradient meshes, blends, stacking multiple layers with reduced opacities and belnding modes. whatever it takes...
    Mylenium

  • Gradient Fill Individual Letters of Editable Type, is this possible in Illustrator?

    I have a applied a gradient fill to editable point text via the appearance pallete, but that applys the gradient to all the type as a whole. Is there any way to fill each individual letter of the type with a gradient without converting into outlines?
    Any help would be appreciated.

    I have it working in CS3 I didn't even have to use Effect>Path>Outline Object.
    Type the text.
    Remove the Default fill in the tool panel.
    Text should have no fill. Now use the Appearance Panel to add a fill.
    Now with the fill in the Appearance Panel selected, click on a Grad Swatch.

  • Can this effect be created in illustrator?

    Hey guys I found this amasing piece of art, is from a logo presentation, and am curious if this effect can be achieved in Illustrator. I am talking about the blurred sides of the vector image, giving the impression of fade in / fade out in perspective. Thanks!

    Hey Mike:
    "I used a gaussian blur effect on one logo, then in the transparency  palette added a radial gradient mask. I did the same for a non blurred  logo and the invesr of the mask."
    Can you apply that gaussian blur only on the very edges (preferably in a circular shape sort of) of the text? Here is a logo I am working on, and interested in achieving a similar effect for this part. I draw 2 elipses (imagine them as compound shape - a ring), the area in the text which should be blurred - in a controlled amount of course, is where the ring overlaps with the text only. (I have barely touched PS, so probably would catch my ears without spending a good amount of time to learn some of the basic aspects of the program)

  • 2d or 3d program for this illustration type?

    I'm an illustrator who often works in Photoshop and Adobe Illustrator. Usually my projects can be solved using these 2D programs (manually drawing on my desk, scanning and then colouring final image in photoshop) but lately I have been questioning whether I should be deploying a 3d solution into my workflow instead.
    What is a good versatile 3d program that would be recommended to model the type of image attached to this post (see note below)? (for geological diagrams). I don't have much time to learn a complex major 3d program such as 3D studio max but I am looking for a quick-to-deploy 3d solution that can be learned in a reasonable amount of time for this type of illustration. Any suggestions?
    It would appear from this referenced image (see note below for image) it is simply a 2D illustration (has a nice character to it). If I decide to stick with a 2D program could someone recommend one suitable? I've been using Photoshop but perhaps I should switch to Painter (I think thats a Corel product?) or something else. I will need some nice texture to paint with. Is Painter better for fine art rather than technical images?
    Any suggestions?
    PS: Image attachment option is not available and so the image is at:
    http://forum.howdesign.com/tm.aspx?m=508794
    Thank you,

    Hi... I've some experience of 3D apps (Yes, 3DStudioMax and an open source one: Blender.... and years ago a 'light-weight' 3D app I can't rmember the name of just now, it'll come to me). I don't think I'd class any 3D app as 'quick to deploy' as an 'occasional' user. If you're going to use it day-in day-out then sure it'll end up 'quick to deploy'. I think you've made this assessment though.
    I've never used Painter so I'm not qualified to comment specifically on how it differs. I would say that I think you'd need to know specifically what it would do.. and I suspect it's a bit like airbrush verses paintbrush... or dare I say: Quark versus InDesign... they essentially do the same thing, they're not 'better' just different... though of course you'll get loads of people will tell you airbrush is better than paintbrush or vice-versa and get pretty evangalistic about their particular experience.. quite often not really very helpful in the end, best will and all that. I use both, regularly, have my preference but on balance... there's really nothing 'killer' I'd say one has over the other. I suspect it's the same for Coral Painter. There is a magazine in newagents for Coral Painter, might give you a feel if you look through it, I have and my feel was as I've just said... nothing 'killer' I'd change for.
    If your experience investment is in PhotoShop and Illustrator then consider whether the 'cost' of going back to basics in something else is the thing to do... only you know the answer to that.... you say 'often works'... suggesting you may not have committed considerably yet but perhaps you have?
    I suggest researching what others are doing... there are resources on the web with awesome work... both in PhotoShop and Painter... it'll show you what's possible... the surge in material on show opened my eyes to PhotoShops possibilities, an application I thought at the time I knew pretty well. Might help you develop a 'feel' for which way to go.
    PhotoShop CS5 has some interesting new '3D' features now which I've not had chance to play with... I don't know if you've got CS5? If not, I'd see if I could sweet talk someone who has it into letting you have a proper look-see.
    This is just my viewpoint given in the hope it'll help you out... though... I'm not sure it does. Difficult decision. Best of luck with it.

  • What does this error mean: Adobe Illustrator CS5 15.0.2 Update There was an error downloading this update. Please quit and try again later. Error Code: U43M1D207

    When I click on the adobe installer icon to update my products, I get this message:
    Adobe Illustrator CS5 15.0.2 Update
    There was an error downloading this update. Please quit and try again later. Error Code: U43M1D207
    What does this mean and how do I solve it?

    See if the following helps:
    Error downloading, installing, or updating Creative Cloud applications

Maybe you are looking for

  • IPOD recognized by windows but not updater...can someone help me?

    Hi all, Any help would be greatly appreciated on this one. My IPOD's old hard drive (10G) went kaput and I bought a new one (the new HD is 15G). I installed the new one and now windows is recognizing the IPOD as an external hard drive but not as an I

  • How to extract substring from a string based on the condition ??

    Hi, I'm having a very large string which as below EQD+CN+SAMPLE18767+2200+++5' NAD+CA+FIR:172:20' DGS+IMD+3.2+2346+55:CEL' FTX+AAA+++GOOD' FTX+AAA+++ONE' EQD+CN+SAMPLE18795+2200+++5' NAD+CA+TIR:172:20' DGS+IMD+3.2+2346+55:CEL' FTX+AAA+++SECOND' FTX+A

  • What happened?? My mac turned into a PC

    Hi - any insight would be appreciated. Using my gorgeous computer all day,.. as usual... late last night started to watch a DVD... Then the problem started... in the middle of loading DVD.... it suddenly froze..I could do nothing.. nothing responded.

  • PAGESTREAM file names

    Hi ! How to set file names of PAGE STREAM-ed desformat=HTML of destype=FTP reports? It got automatically FileNameSomeNumber_PageNo.htm name (FileName47611262_10.htm) ,and I would like to get custom name like FileName_PageNo.htm (without that 47611262

  • Problem with illegal escape sequence

    I want to replace all occurences of \ with / in the text c:\mydirectory\myfile.gif. When try to do this I get the exception shown below How do I fix this. Thanks in advance for any help in fixing this issue Illegal/unsupported escape squence near ind