Problem filling a stroke with white

I'm no Illustrator expert so forgive me in advance if I use the wrong terminology.
I want to produce a white image of a stag without a background. I traced the image and have it rendered with a path using the stroke tool. You can see the stroke selected below.
My goal is to remove the green circle in the background and save the white stag only. Right now the stroke is not filled -- the white color is the transparent background. This is what the image looks like in Illustrator without the background and no color applied to the stroke.
Of course if I deselect the stroke, the object disappears, and when I save it, there's nothing visible. My goal is to print a white stag on a green T-shirt. Do I need to convert the stroke object to something else, then apply a fill? I don't know how to proceed.
Can you please advise me how to get from where I am to where I need to be?
Thanks very much for your guidance.
Brian

Just fill it with black. Then tell whomever is doing the printing to print it with white.
The printer needs an image that will print as a black-and-white solid, not a tint. Any color other than black (including shades of black) will print as a tint (array of dots) unless the color is defined as a spot color and the file is printed as color separations. So without knowing the kind of printing you intend to use, the simplest method of providing single-color artwork is simply to provide a black image and tell the printer the color you want to print.
A design like that might be put on a garment by silkscreening (most common), or by cutting the shape from heat applied vinyl, or even by embroidery. Either way, simply providing a black image will work.
JET

Similar Messages

  • Why when I fill my background with white the background comes up transparent?

    Can someone tell me why when I fill my background with white the background comes up transparent. How do I get it back to filling in white.

    Hi SSJoyce,
    What version of photoshop and operating system are you using?
    Is the background a locked background layer or a regular layer?
    How are you filling the background with white, such as using a keyboard shortcut of Edit>Fill?
    A screenshot might provide more clues as to where the trouble is.

  • Set fill and stroke with events?

    I have a SWF with Shapes created with AS. When an event
    fires, I want to change the fill and stroke of the Shape.
    I know how to do the event, but what's the syntax to modify
    the fill and stroke?
    For reference, in my Class's creator function I have:
    // create the base circle
    baseCircle.graphics.beginFill(0xFFFFFF,1);
    baseCircle.graphics.lineStyle(2,0x69A733,1);
    baseCircle.graphics.drawCircle(0,0,45);
    this.addChild(baseCircle);
    So what I would want to do here is change the lineStyle to
    0xff0000 and the fill to 0xFFFF00 (for example).

    What I wound up doing, which works but seems wonky, is to
    clear the graphics and re-create them as needed (see attached).
    Those event dispatchers are for things I want the parent app
    to do.

  • Problems filling a JLabel with a GradientColor

    Hallo !
    My Problem is that I am filling the Background of an JLabel
    with a Gradient Color.
    For that I was overwriting the paint() methode in JLabel in the way:
         public void paint(Grapics g)
            Graphics2D g2 =(Graphics2D)g;       
            GradientPaint gp =new GradientPaint(70.0F, 70.0F, Color.BLUE,                                                                                                                                                                                         
            30.0F, 30.0F, Color.WHITE);                         
            g2.setPaint(gp);       
            Rectangle rec =this.getVisibleRect();       
            g2.fillRect(rec.x, rec.y, rec.width, rec.height);
            g2.setColor(Color.BLACK);
            g2.setPaintMode();
            g2.drawString(this.getText(), rec.width, rec.height);
          }My problem now is that I cant see the text of the JLabel anymore.
    Why is that so and what should I change ?
    Thx advanced

    Sorry missed a few things....
    this is the changed code
    public void paintComponent(Grapics g)
    Graphics2D g2 =(Graphics2D)g;
    GradientPaint gp =
    new GradientPaint(70.0F, 70.0F, Color.BLUE,30.0F, 30.0F, Color.WHITE);
    g2.setPaint(gp);
    Rectangle rec =this.getVisibleRect();
    g2.fillRect(rec.x, rec.y, rec.width, rec.height);
    g2.setColor(Color.BLACK);
    g2.setPaintMode();
    paintChildren(g2);
    }Thats it
    Or if u want to stick to paint, use the drawString method such that you draw not from width, height, but as follows. leave 2 pixel space and draw from 1/3 rd of the height so that it is aligned vertically centrally
    g2.drawString(getText(),2, height/3);

  • Problem Filling and Selecting with Paths.jsx

    I have copied Paths.jsx from the Adobe Photoshop CS5 Javascript Scripting Reference, p. 141.  It works OK.  It makes a path that is the outline of an ice cream cone and strokes it with the current foreground color.
    I then tried to fill the path and that does not work.  I have tried 3 methods using the following additional code and changing the appropriate false's to true:
    // Fill the path
    fillColor = new SolidColor
    fillColor.rgb.red = 255
    fillColor.rgb.green = 0
    fillColor.rgb.blue = 0
    try {
       if(false) {
             // This works and gives a gray fill that is neither the
                  // foreground nor background color
         // Only the ice cream part of the cone is selected and filled
                myPathItem.fillPath()
       } else if(false) {
         // With a color specified, it doesn't work
                  myPathItem.fillPath(fillColor)
           } else if(true) {
         // This makes a selection of the PathItem, selects it and fills it
         // Only the ice cream part of the cone is selected and filled
                  myPathItem.makeSelection(0, false, SelectionType.REPLACE)
                   selRef = app.activeDocument.selection;
                  selRef.fill(fillColor, ColorBlendMode.NORMAL)
    } catch(ex) {
            msg = "Error filling path:\n" + ex.message
            alert(msg, "Exception", true);
    They do as the comments say.  None of them does what I would expect.  For the second way, the error message is:
    General Photoshop error occurred.  This functionality may not be available in this version of Photoshop
    - Could not complete the command because of a program error.
    I do not understand why only the      ice cream part of the cone is filled or selected (the third array).  I can manually      make a selection from the Path in PS and it also only selects the      ice cream part.  All of the lines are stroked.  Only the top part is      filled or selected.
    Why does fillPath not work?
    I can supply the whole script if necessary.  I am an experienced programmer but new to Photoshop scripting.  Is this a bug or am I doing something wrong?
    Thanks for any help.

    This is the whole script:
    // Paths.jsx
    #target photoshop
    // Save the current preferences
    var startRulerUnits = app.preferences.rulerUnits
    var startTypeUnits = app.preferences.typeUnits
    var startDisplayDialogs = app.displayDialogs
    // Set Adobe Photoshop CS5 to use pixels and display no dialogs
    app.preferences.rulerUnits = Units.PIXELS
    app.preferences.typeUnits = TypeUnits.PIXELS
    app.displayDialogs = DialogModes.NO
    // First close all the open documents
    while (app.documents.length) {
    app.activeDocument.close()
    // Create a document to work with
    var docRef = app.documents.add(5000, 7000, 72, "Simple Line")
    // line 1--it’s a straight line so the coordinates for anchor, left, and right
    // for each point have the same coordinates
    var lineArray = new Array()
    lineArray[0] = new PathPointInfo
    lineArray[0].kind = PointKind.CORNERPOINT
    lineArray[0].anchor = Array(100, 100)
    lineArray[0].leftDirection = lineArray[0].anchor
    lineArray[0].rightDirection = lineArray[0].anchor
    lineArray[1] = new PathPointInfo
    lineArray[1].kind = PointKind.CORNERPOINT
    lineArray[1].anchor = Array(150, 200)
    lineArray[1].leftDirection = lineArray[1].anchor
    lineArray[1].rightDirection = lineArray[1].anchor
    var lineSubPathArray = new Array()
    lineSubPathArray[0] = new SubPathInfo()
    lineSubPathArray[0].operation = ShapeOperation.SHAPEXOR
    lineSubPathArray[0].closed = false
    lineSubPathArray[0].entireSubPath = lineArray
    // line 2
    var lineArray2 = new Array()
    lineArray2[0] = new PathPointInfo
    lineArray2[0].kind = PointKind.CORNERPOINT
    lineArray2[0].anchor = Array(150, 200)
    lineArray2[0].leftDirection = lineArray2[0].anchor
    lineArray2[0].rightDirection = lineArray2[0].anchor
    lineArray2[1] = new PathPointInfo
    lineArray2[1].kind = PointKind.CORNERPOINT
    lineArray2[1].anchor = Array(200, 100)
    lineArray2[1].leftDirection = lineArray2[1].anchor
    lineArray2[1].rightDirection = lineArray2[1].anchor
    lineSubPathArray[1] = new SubPathInfo()
    lineSubPathArray[1].operation = ShapeOperation.SHAPEXOR
    lineSubPathArray[1].closed = false
    lineSubPathArray[1].entireSubPath = lineArray2
    // Ice cream curve
    // It’s a curved line, so there are 3 points, not 2
    // coordinates for the middle point (lineArray3[1]) are different.
    // The left direction is positioned "above" the anchor on the screen.
    // The right direction is positioned "below" the anchor
    // You can change the coordinates for these points to see
    // how the curve works...
    var lineArray3 = new Array()
    lineArray3[0] = new PathPointInfo
    lineArray3[0].kind = PointKind.CORNERPOINT
    lineArray3[0].anchor = Array(200, 100)
    lineArray3[0].leftDirection = lineArray3[0].anchor
    lineArray3[0].rightDirection = lineArray3[0].anchor
    lineArray3[1] = new PathPointInfo
    lineArray3[1].kind = PointKind.CORNERPOINT
    lineArray3[1].anchor = Array(150, 50)
    lineArray3[1].leftDirection = Array(100, 50)
    lineArray3[1].rightDirection = Array(200, 50)
    lineArray3[2] = new PathPointInfo
    lineArray3[2].kind = PointKind.CORNERPOINT
    lineArray3[2].anchor = Array(100, 100)
    lineArray3[2].leftDirection = lineArray3[2].anchor
    lineArray3[2].rightDirection = lineArray3[2].anchor
    lineSubPathArray[2] = new SubPathInfo()
    lineSubPathArray[2].operation = ShapeOperation.SHAPEXOR
    lineSubPathArray[2].closed = false
    lineSubPathArray[2].entireSubPath = lineArray3
    // Create the path item
    var myPathItem = docRef.pathItems.add("A Line", lineSubPathArray)
    // Stroke it so we can see something
    myPathItem.strokePath(ToolType.BRUSH)
    // Fill the path
    fillColor = new SolidColor
    fillColor.rgb.red = 255
    fillColor.rgb.green = 0
    fillColor.rgb.blue = 0
    try {
        if(false) {
            // This works and gives a gray fill that is neither the
            // foreground nor background color
            // Only the ice cream part of the cone is selected and filled
            myPathItem.fillPath()
        } else if(false) {
            // With a color specified, it doesn't work
            myPathItem.fillPath(fillColor)
        } else if(true) {
            // This makes a selection of the PathItem, selects it and fills it
            // Only the ice cream part of the cone is selected and filled
            myPathItem.makeSelection(0, false, SelectionType.REPLACE)
            selRef = app.activeDocument.selection;
            selRef.fill(fillColor, ColorBlendMode.NORMAL)
    } catch(ex) {
        msg = "Error filling path:\n" + ex.message
        alert(msg, "Exception", true);
    // Reset the application preferences
    preferences.rulerUnits = startRulerUnits
    preferences.typeUnits = startTypeUnits
    displayDialogs = startDisplayDialogs

  • Problem filling list item with values

    Hi all,
    We have a master detail form
    block A (master) contains an item, this item is in the record group's where-clause used to fill a list item on block B (detail block) (database item)
    we fille the list item in a pre-record trigger on the master block
    this works fine but when we navigate through the records in block a we intermittently get the following error :
    FRM-41337 : cannot populate the list from record group;
    any solutions
    how should we filll our list item, in which trigger (when-new-record-instance of master block doesn't work correctly, the list item only gets filled after clicking it twice)
    Kr
    Martin

    The probloem is you cannot delete the elements from a listitem if there are records in the block which depend on the entries. You have to find a trigger which fires when the block is "clear". Without having forms at hand, i would suggest to use the ON-POPULATE-DETAILS (should already be there) and adjust the code so that the listitem is filled before the execute_query is done.

  • Can you help with "painting with white" on layer?

    I have duplicated a background and blurred it, then I painted over the areas I didn't want blurred, revealing the layer below.  however when I use the white to blurr back over areas, it's not working.  I have googled the problem, but as yet have not found a solution that works.  Any help would be GREATLY appreciated.  Tks!

    Although you did not mention a mask, I assume this was your setup. (Note the mask is chosen)  At this point, the only reason why you are having a problem restoring the blur with white on the mask is that the Brush Options bar is not set to Normal mode, 100% opacity.

  • Problems with "no color" in the "Fill and Stroke"

    I am having problems with “no color” in the “Fill and Stroke” function of Flash CS4 Pro.
    I had been using CS4 for 10 days and everything worked fine. Then I tried experimenting with various color combinations (along with “no color”) for “Fill and Stroke” for a simple button. Suddenly CS4 locked up on me while I was working with the “color panel”. A second color panel appeared in the upper left corner and the program was not responding. All I could do was to end the CS4 task.
    After that, whenever I created even a simple rectangle, at first the colors would appear as indicated for “Fill and Stroke”, but when I selected the object to see its properties, either the stroke or the fill color box would have a red slash line, indicating a “no color”, and I couldn’t select the color box to change it using the ink bottle tool, although the other box worked fine.
    Rebooting did not help. So I uninstalled CS4 (and didn’t keep the preferences), rebooted, then reinstalled it. The problem was still there. Logging on as another user didn’t help. I tried restoring the Windows system to before I installed CS4 and resinstalling it and that didn’t work. I have a disfunctional CS4 now and I don’t know what to do to fix it. Please help me. Thank you.

    Have you updated flash to 10.0.2?  Have you played around with a bunch of different selections, objects, and so forth to see if this box is always incorrect?  I think there's some particular selection (order of selecting things, and so on), where the color swatches in one location don't work as expected. However, it should not happen all the time and from what I recall it was fairly easy to work around (I can't even figure out what this was - so probably not it, as it seems hard to run into or perhaps now fixed).
    Also make sure you have the stroke selected - if you don't have everything selected, either the fill or stroke will show no color and dim depending on the selection.

  • Can't see fill or stroke even with color activated

    This is a newbie question, but for the life of me I can't figure out what's going on. At some point while I was working on an Illustrator CS2 file, I  accidentally moved or misclicked on an object, and then its fill and  stroke disappeared. In the tool panel, fill and stroke are still  activated and are still the same color they were before, I just can't  see them on the actual image. I can only see the path. Other objects are  still visible, and I've been trying to compare their attributes with  those of the invisible object, but I haven't been able to figure out the  difference.
    Any help would be appreciated!

    Phobic,
    In your Layers screenshot, I count Compound Shapes nested fifteen levels deep. That is an absolutely ridiculous construct, and it is no wonder you are having display problems.
    Select the topmost Compound Shape listed in the Layers palette. Release Compound Shape. Repeat this until you have no more Compound Shapes. Then stay away from the Pathfinder palette until you understand it. (See online Help.) You don't need it for the simply line art you are drawing, based on the screenshot.
    Realize: The Layers palette lists every object in the document. So not everything listed there is a Layer or a SubLayer. Those items titled Compound Shapes are not Layers; they're objects.
    For the kind of artwork you are trying to draw, first get your head around ordinary Compound Paths. When you have to use one closed path to punch a hole in another, use the Object>Compound Path>Make command, not the Pathfinder palette. Compound Paths are basic constructs common across all vector drawing programs. That top row of icons in the Pathfinder palette create compound paths applied as a "live effect"--an Illustrator-specific construct, and one that will just confuse you until you understand the basics of compound paths.
    Understand that each subpath of a compound path has its own winding direction. The winding direction, together with the winding rule, determine whether the subpath "punches" or creates a void in the surrounding subpath. Illustrator does a poorer job of automatically handling those settings than other programs, so you often have to change the direction of direct-selected subpaths. Those settings are in the Attributes palette.
    JET

  • How to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    how to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    Because it was not possible to apply a gradient to a stroke in CS5. When you open the file in CS5, it is reduced to something that can be rendered in CS5.

  • Problem filling DataGrid with XML - Object or ArrayCollection?

    Hi,
    I am trying to fill a datagrid with an XML file, rendered
    from a PHP
    script.
    The problem is that - first time there is only one entry in
    the XML
    file, so when I receive the data using
    event.result.root.child, I get
    an Object. But second time, when there are two entries in the
    XML
    file, the return type becomes an ArrayCollection of "child"
    type
    objects.
    This causes a problem when setting dataprovider of a
    DataGrid....
    So is there a way I can know what is the return type from the
    XML
    file, i.e., whether it is an Object or an ArrayCollection, so
    that I
    can set the dataprovider accordingly?

    In E4x
    If you have an xml structure like so:
    <parent prop1='someValue' >
    <child prop1='someValue' />
    </parent>
    to reference the parent use event.result
    to get the child use: event.result.child; to get the child
    attr: event.result.child.@prop1;

  • Problem filling in an object with colour!

    Hi, if anyone can help me with this problem i would be most
    grateful, it is probably something simple but i cant seem to get
    around it.
    I have created one image by joining together a few vector
    shapes (i.e. using the line tool and bending certain lines to
    create a desired pattern). Now that i have done this i wanted to
    fill the image with a colour but i am unable to do so. I have
    grouped the lines together to create one image but it fails to fill
    in the whole object but only fills certain parts on the outside and
    not the inside of the image :-/
    It is hard to put into words but hopefully somebody knows
    what i am talking about,
    Dan Sargent

    Dan,
    It would be a lot easier to understand if you uploaded the
    image somewhere
    so we could see it. Preferably the FWs png
    Peter
    "sargent dan" <[email protected]> wrote in
    message
    news:evlls8$dei$[email protected]..
    | Hi, if anyone can help me with this problem i would be most
    grateful, it
    is
    | probably something simple but i cant seem to get around it.
    |
    | I have created one image by joining together a few vector
    shapes (i.e.
    using
    | the line tool and bending certain lines to create a desired
    pattern). Now
    that
    | i have done this i wanted to fill the image with a colour
    but i am unable
    to do
    | so. I have grouped the lines together to create one image
    but it fails to
    fill
    | in the whole object but only fills certain parts on the
    outside and not
    the
    | inside of the image :-/
    |
    | It is hard to put into words but hopefully somebody knows
    what i am
    talking
    | about,
    |
    | Dan Sargent
    |
    |

  • Problems creating a stroke around entire completed logo

    Hi
    Am currently having trouble finishing off my logo.
    I need to be able to do a stroke around the entire logo so that when i cut it out i dont need to go right to the edge of the design (as it is for heat pressing on t-shirts).
    Only problem is I can't work it out. I've tried grouping it all then trying to create one stroke around the entire thing but it still wants to apply the stroke to individual items.Then I tried putting a copied layer behind and giving it a stroke but because it is filled with black it changes the colour of the blue. tried filling with white, but it creates halo's and shadows in the background. Ive set the transparency to block out the black behind as much as i can to try and eliminate the colour change problem. But its still not right.
    So the question is, can i create a stroke just around the outside of my completed logo?
    Have attached a pdf with two examples. One without anything and one with the copied layer behind and filled black so you can see the colour difference.
    Any help or suggestions would be fabulous.
    Thanks

    Hi,
    If I understand your problem correctly, this should do what you need:
    Select and group the oval and the text. Keep selected. Go to Window>Appearance. On the upper right, just above the bar that says Group, you should see three short horizonal bars and a tiny triangle. Click on that, and a menu will open, one of the options being Add New Stroke. Select that. You will see the new 1-pt. black stroke appear under the Group bar in the Appearance palette. Click and hold the Stroke bar, drag it below the Contents bar. Go to the stroke palette Window>Stroke and increase the size of the stroke until you are satisfied with it.
    Peter

  • Color Swatches in Toolbar for Fill and Stroke are not working properly.

    The color swatches in toolbar for fill and stroke are not functioning as they should.  When I select an object on the artboard, the swatches display fine in the toolbar for what they should be.  However, when I double-click on those swatches from within the toolbar to modify the color, the color which comes up is #000000 instead of the actual color it should be. 
    I am using 16.2.1 (cloud) for Mac OS 10.8.2
    I've submitted a bug report, but want to know if anyone else has had this issue and what they did to resolve the issue.
    Also, the eyedropper tool is buggy and occasionally places the #000000 into an object instead of the characteristics the eyedropper is selecting.  I don't have any hidden layers or weird groupings, it just randomly decides when it is going to work or not.
    I've never had these issues on previous versions of illustrator and have been proficient in all versions since 2007.

    Double click the eyedropper, and turn on appearance, is off by default.
    For your #000000 color problem that also likely is related to appearance setting. You may have for example have some with #000000 at the character level, and another color at the type level.

  • Filling Text art with gradient or pattern

    Hello all,
    I'm trying to fill some existing arts (path, text, compound) with a just created gradient or a pattern loaded in the swatch
    To achieve that I'm trying to change the path style:
    GetPathStyle (myArt, &pathArtStyle);
         pathArtStyle.strokePaint = false;
         pathArtStyle.fillPaint = true;
         pathArtStyle.fill.color.kind = kGradient;
         pathArtStyle.fill.color.c.b.gradient = myGradient;
    SetPathStyle (myArt, &pathArtStyle);
    This works for kPathArt,
    but nothing happens for kTextFrameArt or kCompoundPathArt.
    How can I program this ?
    thanks in advance
    PS: I also tried to program the procedure "How to Fill Text with a Pattern or Gradient in Adobe Illustrator" described for illustrator UI, w/o success
    PS: I have similar problem when trying to create a clipping using SetGroupClipped()  (see AI function reference) while the clipping path is a text or compound. No clipping is done.

    To fill text with a gradient or pattern youi can do two things, either
    1) outline your text (Type > Create Outlines) then click on the pattern or gradient swatch you require. For easier control of gradients it is best to make a compound path of all the letters. This method is not editable because the type is no longer live.
    2) If your type needs to be live do the following: Type your text and colour it None (no fill, no stroke). Then Appearance panel flyout menu; Add New Fill and click on your swatch.

Maybe you are looking for

  • Error JBO-26080 with Discussion Forum portlet

    Hi, I'm getting an error with the discussion forum portlet. This is one way I found to reproduce this problem: - reply to a post in a forum - do a search that should include the post added before in the result - you should get this error Unable to pe

  • Big Troubles on designing Query about special customers' counting

    Hello buddies: I meet a problem on designing Query about special customers' counting. Let me describe the requirment first.  I want to create a query with BEX , and there is a key figure with very special logic. That is: to list the counts of the cus

  • RMAN BACKUP VERY SLOW

    Hi all, what is fastest method to take backup using rman Thanks&Regards, Mahesh

  • I unable to open new messages on my hotmail

    I unable to open new messages on my hotmail?

  • How does iPhoto relate to iP Library Manager?

    Once upon a time, I had  my libraries & albums set up just fine. (In iP4). Then, I upgraded from like Panther to Leopard, etc. I don't know what iP version I upgraded to doing that. Anyway, everything got fouled up & the only way I could access my li