How to use paint bucket.

I am trying to change the background color and I USED, to be able to just click on the paint bucket and then click the background with whichever color I wanted.
For some reason when i click nothing happens... Im getting frustrated. blah
Please help.

Something like this:
1. Use the Rectangular Marquee Tool to draw the rectangular selection
2. Select the Paint Bucket Tool
    Add a new blank layer
    (so it's easy to change later)
    Click on the foreground color chip in the toolbox and set your color for the fill
    Click inside the selection with the paint bucket tool
    Select>Deselect
You can use the rulers to see how far an inch is in your document
(View>Rulers)

Similar Messages

  • Cannot use paint bucket on 32bit

    i am trying to isolate the chrome ball part in my picture. and I have made a selection around my chromeball and ctrl+shift+i to reverse my selection.
    and then I tried to fill it in with black color using paint bucket and it poped error message that saying it doesn't support 32bit?
    I am following the tutorial on digital tutor and it works according to the tutorial and how come it is not working on my photoshop?

    Yes, the paint bucket doesn't work in 32 bit/channel. Underneath it has some assumptions about the range of the image data that will take a while to resolve.
    But the Fill command works just fine.

  • Confused about how to use paint()

    Hi, I have been working really hard to try to get the following program to work but I am really confused on how to use paint(). I do not have anyone to ask so I thought this forum could help. Anyways, here is my problem...
    I am trying to recursively figure out the Sierpinski fractal. I cannot figure out if my math works or not because I do not know how to call the paint() recursively to draw my triangles.
    Please have a look at the following code. Thank you!
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class DrawTriangle extends Frame {
      Point a = new Point(20,480),
            b = new Point(350,40),
            c = new Point(680,480),
            halfB,
            halfC,
            halfB2,
            halfC2,
            halfC3;
      int width;
      public DrawTriangle() {
        super("Sierpinski Fractal");
        addWindowListener( new WindowAdapter() {
          public void windowClosing( WindowEvent we ) {
            dispose();
            System.exit( 0 );
        setBackground( Color.white );
        setSize(700, 500);
        setVisible(true);
      public void paint(Graphics g, Point a, Point b, Point c) {
        width = c.x - a.x;
        if (width < 6){return;}
        g.setColor( Color.GREEN );
        g.drawPolygon( new int[] { a.x, b.x, c.x }, new int[] { a.y, b.y, c.y }, 3 );
        halfC.x = c.x/2;
        halfC.y = c.y;
        halfB.y = b.y/2;
        halfB.x = b.x;
        halfB2.y = halfB.y + a.y;
        halfB2.x = a.x;
        halfC2.x = halfC.x + a.x;
        halfC2.y = a.y;
        halfC3.x = halfC.x/2 + a.x;
        halfC3.y = halfB2.y;
        paint(g, a, halfC, halfB);
        paint(g, halfC3, halfC, halfB);
        paint(g, halfC2, halfC, halfB);
      public static void main(String[] args) {
         new DrawTriangle();

    thanks jsalonen, your tip let me start working on the math to correct it.
    I have a new problem now. My math is correct but I am having problems with the recursion. I can draw only the top , left , or right triangles. I cannot get them all to work together. See code and comments below.
    Any ideas why I cant call all three of the paint()s toegther and have them work?
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class DrawTriangle extends Frame {
      Point a = new Point(20,480),
            b = new Point(350,40),
            c = new Point(680,480),
            halfA,
            halfB,
            halfC;
      int width;
      public DrawTriangle() {
        super("Sierpinski Fractal");
        addWindowListener( new WindowAdapter() {
          public void windowClosing( WindowEvent we ) {
            dispose();
            System.exit( 0 );
        setBackground( Color.white );
        setSize(700, 500);
        setVisible(true);
      public void paint(Graphics g)
      paint(g, a, b, c);
      public void paint(Graphics g, Point a, Point b, Point c) {
        width = c.x - a.x;
        if (width < 6){return;}
        halfA = new Point((a.x+b.x)/2, (a.y+b.y)/2);
        halfB = new Point((a.x+c.x)/2, (a.y+c.y)/2);
        halfC = new Point((b.x+c.x)/2, (b.y+c.y)/2);
        g.setColor( Color.GREEN ); //draw left triangle in green
        g.drawPolygon( new int[] { a.x, halfA.x, halfB.x }, new int[] { a.y, halfA.y, halfB.y }, 3 );
        g.setColor( Color.RED ); //draw top triangle in red
        g.drawPolygon( new int[] { b.x, halfA.x, halfC.x }, new int[] { b.y, halfA.y, halfC.y }, 3 );
        g.setColor( Color.BLUE ); //draw right triangle in blue
        g.drawPolygon( new int[] { c.x, halfB.x, halfC.x }, new int[] { c.y, halfB.y, halfC.y }, 3 );
        /*If you were to comment our two of these paint() calls the one will work correctly alone.
         *But my problem is that they do not work together! */
        //g, left point, top point, right point
        paint(g, halfA, b, halfC); //top triangle
        paint(g, halfC, halfB, c); //right triangle
        paint(g, a, halfA, halfB); //left triangle
      public static void main(String[] args) {
         new DrawTriangle();
    }

  • How to isolate part of my workspace and use paint bucket to fill it with color?

    Here is my situation:  I want to draw a vertical line on the left-hand side of my workspace about an inch away (to the right) from the left edge.   Then I want to fill up that inch-wide column with a particular color.  The end result being that I will have an inch-wide bar of color running vertically down the left side of my project.
    I know this is probably really easy to do but it's been a long time since I had a course in Photoshop.  
    I use PSE 6.  Thanks!

    Something like this:
    1. Use the Rectangular Marquee Tool to draw the rectangular selection
    2. Select the Paint Bucket Tool
        Add a new blank layer
        (so it's easy to change later)
        Click on the foreground color chip in the toolbox and set your color for the fill
        Click inside the selection with the paint bucket tool
        Select>Deselect
    You can use the rulers to see how far an inch is in your document
    (View>Rulers)

  • Using Paint Bucket Fill in Selection puts a 1px line down each side...

    I want to fill a selection.  I have a simple rectangle path.  I make the path a selection and fill it with the paint bucket.  I get a line on the left outside the selection:
    Then I get a line on the right inside the selection:
    There's no line at the top and the bottom of the fill is at the bottom of the image.
    This line is only 1px but it's for a web graphic and I am trying to get a pixel-perfect size.
    Can anyone tell me why the behaviour and how to avoid it?
    Thanks
    Martin

    Refine Edges box did it for me!
    I didn't even know about that.  When I had a look it was set to 0% contrast and pushing that up to 100% sorted out the probem for me.
    Thank you very much.
    Martin
    Next on my list is to learn about Shape Layers and Fill Pixels.  Does this never end?

  • When I use paint bucket or brushes there is no colour not even black

    I have recently installed Elements 9.0.  I previously had 8.0 and no problems.  If I try to darken skies with a black paintbrush it's all pale and so is my brush icon.  I tried picking bright colours but they don't work, and I tried with the paint bucket and that's the same - no colour.  Can anyone help?

    Thank you - I've just been on and it is already in RGB.  I'm quite 
    bewildered.
    In a message dated 29/01/2011 09:31:02 GMT Standard Time, [email protected] 
    writes:
    Your  document may be in the grayscale color mode.
    Go to Image >Mode and  select RGB  Color.
    MTSTUNER

  • How to use paint method to draw in many componets.

    Hi!
    I have code like this:
    public class MainPanel extends JPanel{
       JPanel p1;
       JPanel p2;
       public MainPanel(){
           super(new BorderLayout());
           p1 = new JPanel();
           p2 = new JPanel();
           add(p1 , BorderLayout.Center);
           add(p2 , BorderLayout. West);
           setVisible(true);
    @Override
        protected void paintComponent(Graphics g) {
           g.setColor(Color.red);
           g.fillrect(10,10,10,10);
    }This code is onle an example. Supose, this code will paint black rectangle on "main panel" to which p1 and p2 are added. What should i do to be able to paint this rectangle on p1 or p2 without creating separate classes in which i will override paintComponents() method for p1 and p2. I would like to avoid creating separete classes for each panels. Is there any way to do that using one paint Components method. Thanks in advance for all respone.

    (where's Darryl when you need him?)Erm, Pete, since when did I become an expert lol?
    Lost my hard disk, its been hiccuping for a couple of weeks now. I'm running on an old 20 GB PATA with a 5GB c drive. No IDE, no offline Javadoc. I'll get a HDD in the morning, but I hope I can spin up the old disk at least once and recover the last week's "work" ... just fun stuff actually.
    Why does this code draw rectangles just for split second?repaint() (and consequently paint(), paintComponent() and other painting methods) may be called by the system any time it is detected that the component needs to be repainted. Since you do not have a override for paintComponent, it will perform its default painting and paint the entire component, wiping out your rectangle.
    For persistent drawing on a JPanel or JComponent I know only one way: override paintComponent. If you need to avoid this, you could go with morgalr's suggestion to use JLabel.
    For this you would draw the triangle/rectangle/whatever to a BufferedImage, then call label.setIcon with a new ImageIcon constructed from the BufferedImage.
    Also, avoid obtaining a Graphics reference via getGraphics. During the lifetime of a visible component, various different Graphics references may be passed into the paintComponent method, so the reference you obtain may not be current. getGraphics can also return null.
    luck, db

  • How do I color with paint bucket in Elemen ts 11?

    How do I color with paint bucket in Elements 11?

    For help using paint bucket tool you can refer to the help link
    http://community.adobe.com/chcservices/services/redirect?u=http://help.adobe.com&p=Photosh opElements_11.0&l=en_US&id=24280_editor

  • How do I "Select pixels" on more than one layer, then "Paint bucket" ?

    Hi
    Using Photoshop CS4.
    I have a document with several layers.
    If I right click a layer in the "Layers UI" and then click "Select pixels" then the pixels in that layer is selected.
    Then I can use the "Paint bucket" to e.g. set another color for the selected pixels.
    Is it possible to "Select pixels" from more than one layer, and then use "Paint bucket" once to change color for all the selected pixels in one go?

    You wont be able to FILL more than one layer at a time.
    But loading seections can be done by holding control SHIFT and clicking on the layer thumnail in the layers panel. Each click will load more area depending on which layers you load

  • My paint bucket/gradient/paint brush tool icon is now a eye dropper...

    I've been playing around in CS5 for about a couple months now and today, (not sure if I hit a special function/command) but my icons when the paint brush, gradient and the paint bucket is now a eye dropper icon.. It's kind of annoying and I'm not sure how to reverse this.
    Any feedback would be great!!
    Thanks!!

    Did you read the thread? Did you read the tech doc? Are you running any of the programs that are associated with the conflict? Did you try any of the advice offered? As the tech doc explains, symptoms vary, but one listed is:
    Tools behave as if the Shift or Option keys  are pressed.
    Normally you would get the Eyedropper Tool using Paint Bucket, Gradient Tool, Brush Tool etc IF THE OPTION KEY was pressed.
    Reread the thread and see if any of the solutions (including an "unofficial" download fix written by Jesper at post #72)
    If you have any of the apps listed, make sure they are disabled. I would log out, and log back in and restart PS while holding down the Shift+Option+Command keys. You'll get a small dialog to OK deleting the preference file.
    If that does not work, try downloading Jesper's fix.
    There is no official solution yet from Apple or Adobe, to my knowledge.

  • Paint Bucket not filling entire selection (CS4/5)

    Hello, I'm a professional cartoonist and have worked in Photoshop since the earliest versions.  Since upgrading to CS4 (and now CS5), I've been having trouble using the Paint Bucket Tool, so I'd appreciate any help here.
    Here's a basic example ...
    1) Imagine a single layer CMYK document.
    2) Draw a closed shape using the Pencil Tool (no antialiasing!) with a color of choice.
    3) Select the inside of this shape using the Magic Wand Tool (again, no antialiasing!).
    4) Fill the selection with the EXACT SAME COLOR using Paint Bucket tool.
    5) Deselect region.
    6) Now use menu options SELECT -> COLOR RANGE ... And click on the filled region (technically, that color should be selected by default since it's your current foreground color).
    7) Click OK
    8) Choose a new foreground color and then Paint Bucket the selected region, BUT make sure you click on the area you filled in Step 4 ... i.e., do not click on a pixel you drew using the Pencil Tool.
    In CS4 and now CS5, the Paint Bucket is not including the pencilled outline when I click fill.  That is, I'm left with the original pencil outline, and the filled region in a new color.
    HOWEVER ... If in Step 8, I'm lucky enough to click one of the original pencil marks, the entire color region fills as it always did in previous versions.
    This has grown increasingly annoying while working with my cartoons because I use the Pencil Tool to "close" gaps in my inked lines, and then the Paint Bucket to fill.  If I decide to change the color of a character's shirt, I'm left with tiny spots in the gap regions.
    Help would be much appreciated!!
    Thanks

    Thanks for your suggestions, Charles.
    Here's a better explanation as to what is happening with visual examples ...
    I ink my cartoons with traditional tools, and then scan a high-res copy into Photoshop.  The black ink is converted to a 2 color bitmap so that there is no anti-aliasing.  This file is then converted to CMYK for coloring.  The black line art becomes the bottom ("Background") layer, and I add a new layer on top for the flat colors.  The flat colors layer is set to "Multiply" so that I can close tiny gaps in my lines with color, without erasing the original black lines.
    Visually ...
    1) Bottom layer is black outline with no antialiasing ...
    2) Create new layer on top for flat colors and set to MULTIPLY.  Using pencil tool (and Wacom Tablet), close the gap with red ...
    3) Because layer is on multiply, you can see that the red in Step 2 is actually this shape ...
    4) Magic Wand to select the area INSIDE of the now closed circle.  Wand is set to "Sample All Layers" so that it selects only the area closed in by the black outline layer AND the red.  Paint bucket this area with the exact same red ...
    5)  Once again, here is what the flat color layer actually looks like since Multiply is on ...
    6) Magic wand the area outside of the circle and fill with a DIFFERENT color ...
    7) Now, suppose you didn't want the circle to be red.  I now select the red using Magic Wand (or Select -> Color Range menu) and click on the red.  An outline appears around the ENTIRE red shape (i.e., you would assume that all of the red has been selected since it is the EXACT same color ... verified using eyedropper tool) ... However, if you click to fill with Paint Bucket, here is the result ...
    8) For some reason, Photoshop is "remembering" the red originally drawn using the Pencil Tool in Step 2 as a separate region ... Even though all of the colors are on the exact same layer ...
    I hope this better explains what I'm experiencing here
    ANY IDEAS???

  • Paint bucket tool after drawing with brush tool

    Hi,
    I am just wondering if there is anyway to paint using the paint bucket tool properly after drawing something using the brush tool. Although I have no gaps anywhere within the outline , there are times where the paint bucket tool doesn't paint.  Another issue I encounter is whenever I try to adjust the shape with the selection tool it either fills a portion of the shape with color and even sometimes makes the shape itself disappear.  Is there a way to only select a small portion of the drawing (like the way it is with pencil tool) as the shapes were done using a couple of strokes instead of just one.

    Hi,
    You can use use paint bucket tool to change the color of lines drawn with brush.And to be sure that there are no gaps select the line with subselection tool because visually you cannot make out as the gaps are defined in pixels.Also you can select parts of fill region with selection tool if the painting with brush is done in shape mode not object drawing mode.Hope this helps.
    Thanks,
    Sangeeta

  • Paint Bucket Problem

    hi everybody i have big problem i cant use paint bucket my settings are rgb settting i checked but i cant paint

    Your Opacity in the tool options bar is set to 40%
    Set the Opacity to 100% and see if that works

  • Photshop CS5 paint bucket colors do not match selected color picker colors

    I recently installed CS5 on my laptop after first removing it from my previous machine.
    All licences were validated so no problems there.
    Now when using paint bucket in photoshop, the colors that I select in the color picker are not the colors that result when I use the paint bucket.
    If I create a new black canvas then the colors selected in color picker work with paint bucket.
    But if I attempt to recolor the background in an existing image that I import into photoshop, I get the mismatch with colors when I use paint bucket. My method for selecting colors is the same in each case, I select 'set foreground color' and set the color using html values entry at the bottom of the panel.
    Any help would be gratefully received.
    Brent

    Try changing Image > Mode to RGB – does the Tool work as expected then?
    To quote from the Help:
    Indexed Color mode
    Indexed Color mode produces 8-bit image files with up to 256 colors. When converting to indexed color, Photoshop builds a color lookup table (CLUT), which stores and indexes the colors in the image. If a color in the original image does not appear in the table, the program chooses the closest one or uses dithering to simulate the color using available colors.
    Although its palette of colors is limited, indexed color can reduce file size yet maintain the visual quality needed for multimedia presentations, web pages, and the like. Limited editing is available in this mode. For extensive editing, you should convert temporarily to RGB mode. Indexed color files can be saved in Photoshop, BMP, DICOM (Digital Imaging and Communications in Medicine), GIF, Photoshop EPS, Large Document Format (PSB), PCX, Photoshop PDF, Photoshop Raw, Photoshop 2.0, PICT, PNG, Targa®, or TIFF formats.

  • How do you connect lines for a drawing in order to use the live paint bucket tool?

    Hello! Im fairly new (okay not really) to using adobe illustrator
    I used the Image trace tool to outline this drawing of Captain America but unfortunately the lines arent connected and therefore
    messes up my colouring completely when I use the Live Paint Bucket tool.
    Is there a way to connect the lines so they are closed when I colour it? Or is there another way to color this drawing?
    Help would be greatly appreciated!

    Those gaps are very wide. Draw some paths and apply no fill, no stroke to them.
    Then make the live paint. In case the live paint already exists, you can go into isolation mode and then draw the paths. Or draw them and use Object > Live paint > Merge

Maybe you are looking for

  • HT3402 I have my lost iphone4s which dont have  any sim and its blocked as well what can i do now.

    I have lost my iph4s  which dont have any sim and it is blocked as well now how can i get my phoen. <Personal Information Edited by Host>

  • My Calendars are missing....

    Just opened my ical and I had about 9 Calendars and now they are all missing. Further to that, I cannot add any new calendars or select any. Where the calendars were is now blank.... Can anyone help with a solution. Thanks Dean

  • Timing CLD practice exams

    Hi, I wanted to bring up this topic for those who are preparing for taking the CLD.  As you know there is a four hour limit for taking the exam.  While preparing for the exam, using all the materials, webcast, and the certification discussion board,

  • Error -1073807346 when stopping RT Host VI in a cRIO application.

    I am receiving error --1073807346 when I stop the RT Host VI in a cRIO application.  The FPGA VI compiles and runs without error.  All of the I/O s are configured in the Project Explorer.  I am using 3 DMA channels in separate loops in the RT VI.  Da

  • ACS 4.2 users import

    hi , i want to import users to ACS 4.2 with the static ip address  assigned to every user. i have found the format of the file  to add users but  i did not find how can i add the static ip to this file. ADD:Dchira:CSDB:backup:PROFILE:4