Photoshop :: CS5 - Filling Area With A Pattern By Using Paint Bucket

Aug 13, 2012

I have CS5 extended.  I know with coral draw I can use a paint bucket to fill an area with a premade pattern and on CS5 I found the pattern stamp tool where I can paint a pattern but is there a way to dump or fill a set area with a pattern?  I find when I paint a pattern even the smallest mistake of painting a section twice can lighten or darken the pattern.

View 2 Replies


ADVERTISEMENT

Paint.NET :: Paint Bucket Filling In More Than Designated Area?

Aug 23, 2011

I have been working with Paint.net for a couple of years and have never had this issue before. Suddenly, today, I tried using paint bucket to fill in a square and it filled in the entire image. I don't know if I accidently changed some setting on accident or what. how to make this stop so that the paint bucket only fills in the area I have outlined for it?

View 8 Replies View Related

GIMP :: Bucket Fill (2013) - Filling Area Surrounded By Dotted Line

Jul 29, 2013

Win 7 64 bit

How can I use the bucket-fill option to fill an area surrounded by a dottedline?

The dotted line is a path; so if I use a line for the dots, the bucket-fillworks.

But how can I step back after filling to change the path's line into dotsagain?

View 3 Replies View Related

Photoshop :: Fill Area With Content-aware Using Paint Bucket Tool?

Mar 8, 2012

Is it possible to fill an area with content-aware using the paint bucket tool? i have been able to fill the exact area I would like to be replaced with a general swatch. perhaps it is possible to create a swatch which uses the content-aware filter?

View 5 Replies View Related

GIMP :: Film Grain - Bucket Filling

May 2, 2012

I've been working with this tutorial to modify some images. Link

I am unsure how to do one particular step however. Under 'Step 2', it reads:

"Next add a new layer to the image, and use the bucket to fill it with your tileable noise."

I can activate the bucket tool, but what am I doing with it?

View 5 Replies View Related

GIMP :: Bucket Is Filling The Wrong Color In?

Dec 23, 2012

I'm trying to change the color palette of a sprite's gif in GIMP, but I can't get the bucket tool to put the right color in to each layer.

Here's a screenshot of the gif opened up in GIMP with only the first frame visible.

Next, I selected one of the colors in the frame.

Then, I clicked on the new foreground color and set the blue and green sliders to 0.

Then, I selected the Select By Color tool, and selected the area with the old color.

Last, I used the Bucket Fill tool (making sure that FG color fill and Fill whole selection were chosen on the left) to add the new color, but I got a completely different color in its place.

View 2 Replies View Related

Illustrator :: Live Paint Within Pattern Area In CS6

Jun 15, 2013

I am having some issues trying to live paint whilst in the pattern area of CS6. I have created a pattern which I would now like to colour. I am able to colour some areas like the spots on the plants head, but no ther gaps inbetween. Normally when not in the pattern area I can merge live paint and work with all the spaces but I cant do this for some reason. I need to work with the pattern whislt in this mode to ensure that the design is correct.
 
"The selection contains objects that cannot be converted. Live Paint groups can only contain paths and compound paths. Clipping paths are not allowed."
 
Whilst I ma here I am also having a bit of trouble with the oattern swatch. The pattern has been designed for a printed interior wallpaper. In the below image the blue box (follow the green arrow) is the full pattern repeat set at a 1/4 drop. I need that full square rather than a swtach. So effectively I need a 'Tile' that I can then ready for print. The reason for this is that it will be printed on wallpaper (52cm x 10m) and each roll needs to match up either side (with a 1/4 drop)
 
is it possible to 'grab' the pattern in the blue square?

View 3 Replies View Related

Photoshop :: Filling With Pattern

Jan 17, 2006

I have defined the picture of a brick wall as pattern. I want to fill an area with that but:

1) The area is smaller

2)I want it 2x2

(I had put a demonstration but it doesn't work)

View 5 Replies View Related

Photoshop :: Filling An Area With A Certain Colour

Jun 8, 2005

I have an image that I wish to edit slightly, by filling the background with a certain colour.

What I basically want is the horse to remain white, with the black border, but the main background (underneath the horse) to be maroon.

View 3 Replies View Related

Photoshop :: Filling A Shape With Pattern

Nov 22, 2012

this is not a hard one, but it is hard for me to figure out. i would like to find out how to fill a shape with some patterns exactly like how it looks in the below picture. As you can see, the filled pattern pictures(those small hearts) are not overlayed and the sizes are random. And the edge of the shape(that's the big heart) is just smooth. how to do it?

View 8 Replies View Related

Photoshop :: How To Browse Patterns Easily Already Filling In Area

Mar 1, 2013

What's an easily way of browsing the patterns I currently have, but in a sense that they are already filled out on a large area so I can see the effect.   So what I'm after is a way to ideally step through (single click) one pattern to the next, and see the effect it has as a pattern for a filled in area.
 
At the moment I see to have to keep going back to the Fill with Pattern for a given area and manually applying and then viewing.  The only place I can find to see patterns is in the fill with pattern type dialog however (a) they are very small and (b) they are not tiled across an area so you can get a feel for what it will look like.

View 2 Replies View Related

Illustrator :: Filling Text Art With Gradient Or Pattern

Oct 4, 2012

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.
 
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.I have similar problem when trying to create a clipping using SetGroupClipped() while the clipping path is a text or compound. No clipping is done.

View 4 Replies View Related

Illustrator SDK :: Filling Text Art With Gradient Or Pattern

Oct 4, 2012

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 ?

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.

View 1 Replies View Related

GIMP :: Create Layer Mask By Filling In Area With Black

Aug 4, 2013

I have been using Gimp for awhile (love it!) and have always used layer masks with no problems. But for some reason when I create a layer mask by filling in an area with black it isn't 100% opacity. Everything seems to show 100% opacity, but I can see the layers underneath (the mask is maybe at 90%??). If I "show layer mask" it is black where it should be and white where it should be, it doesn't look transparent. All my layers are set to "normal" mode. I'm at a lost as to what setting I must have changed?

View 1 Replies View Related

Paint.NET :: Select Entire Figure So That Can Fill It Using Paint Bucket Tool?

May 19, 2013

On a new layer, I used the line and curve tools to draw the outline of a human figure. I want to fill the shape with a color. However, I can't figure out how to select the entire figure so that I can fill it using the Paint Bucket tool. How can I do that?

View 2 Replies View Related

Paint.NET :: Paint Bucket Leaves Small Grey Outlines On Edges

Jul 12, 2011

Every time I use the paint bucket on something, it always leaves a small grey outline on the edges. How to get rid of that?

View 3 Replies View Related

Illustrator :: Clipping Masks - Filling Half Of Object With Pattern

Oct 29, 2012

I created a pattern in illustrator, and then I created an object, and I wanted to fill half of the object with the pattern, so I used a clipping mask to do this.. however, now when i try to group everything together, the clipping mask in released and the pattern spills all over the artbaord... when i try to copy and paste into a new document, everything is pasted as white instead. When i try to merge the layers, the clipping mask is released...
 
How to keep the clipping mask from releasing.. Also, I tried rasterizing but that doesn't work either and it makes my shapes all rough and choppy!

View 3 Replies View Related

Photoshop :: How To Use Paint Bucket

Jan 17, 2013

I made an outline of an image with the line tool and I read online that it only creates vectors or something. The solutions online told me to rasterize or flatten my layers. So I rasterized them but the paint bucket fills the whole screen with no regards to the lines I made.

Bottom Line: I made an outline using Line Tool, rasterized all my layers, used the paint bucket but the paint bucket covers the entire screen. I'm 100% sure there aren't any "holes" between the line segments btw.

View 5 Replies View Related

Photoshop :: CC For Mac - Why Can't Use The Paint Bucket

Jul 2, 2013

I finally found the paint bucket tool - but when I try to use it, I get the circle w/ the cross in it (like the ghostbusters background )....it didn't work with .tif or .psd files, but it DID work w/ a .jpg file!

View 1 Replies View Related

Photoshop :: Bucket Paint!

Jan 20, 2005

paint bucket. After drawing with pen, i use paint bucket to fill this object, but all layer be filled with the color, that i used to fill this object. I can't fill what i've drawed (but in Corel i can do that). Besides, sometime I can't fill any object because of uneditable error,

View 9 Replies View Related

Photoshop :: Paint Bucket CS2

Feb 21, 2006

when i try to fill in an object area that i have created with the pen or the rectangle tool etc the paint bucket fills in the entire screen (no i havent left any gaps open), it only seems to work when i fill into marquee tools.

View 1 Replies View Related

CorelDRAW Graphics Suite X5 :: Pattern Fill Filling Drawn Object

Jul 2, 2013

I added a patten fill to my libray, saved my default setting so it would stay, now everytime I draw an object it is automatically filled with that pattern fill...I even deleted the pattern fill from the library, saved default settings again, restarted corel, and it still fills an object.

View 4 Replies View Related

Photoshop :: Paint Bucket Fills

Mar 29, 2013

I am working on a project where I am doing hand drawn rotoscope (think waking life).  For larger areas I am drawing the outline and then filling the shape with the paint bucket.  The problem is that the fill doesn't go all the way to the edge of the outline. The anti-aliasing on the brush seems to be creating it, but I don't want to turn anti-aliasing off.  It will be a huge time saver for me to figure this out.

View 1 Replies View Related

Photoshop :: CS6 - Paint Bucket Tool

Dec 16, 2012

I am used to work with Photoshop. Unfortunately there is a bug in the paint bucket tool of Photoshop CS6. I made all updates up to 13.0.1 (x64).

Description: The paint bucket tool is very tricky to use now. If you want to fill a certain empty area of a picture with a simple color, it often does not do that. My clicks are totally correct, also the position ... but it does not take it. Sometimes I have to zoom in some 100% until my clicks are successful and the desired areas are filled with color.

View 3 Replies View Related

Photoshop :: Paint Bucket Into Layers

Dec 21, 2004

I would like to know how to fill an object on a layer using paintbucket and then isolate the fill onto its own layer. I swear I've done this before, but may have been dreaming. I am using a base drawing and would like to overlay fills and have the ability to control what is seen by turning on and off layers of paintbucket without having to duplicate that base drawing. Did that make sense? I am trying to avoid drawing an excessive amount of shapes.

View 7 Replies View Related

Photoshop :: Problem With The Paint Bucket

Dec 7, 2002

I was trying to go through the blue metal shpere tutorial and I got stuck. I drew mt circle with the marqee tool and then I tried to fill it with a different color.

The paint bucket did put the other color in but it didn't fill it all the way. It was a solid color in the center of the sphere but it started to fade out the further out you went. I just want it to fill in solid not fade. What is the problem here?

View 1 Replies View Related

Photoshop :: Paint Bucket/fill,

Nov 13, 2004

using PS CS. i have selected a circular area with the marquee tool on a transparent background and i want to fill that area with colour, using the paintbucket tool i attempt to fill area but what happens when i do this is it acts like a spray can does, dark colour in the centre fading aways towards the edges also it does not actually fill the selected area it's as if i have not selected it, but i have.

View 2 Replies View Related

Photoshop :: Paint Bucket Tool

Jan 17, 2007

i know this is probably very easy but im somewhat new to photoshop.. basically i am using the paint bucket tool wanting to only fill in the selected area i've created but it's filling the whole page
what do i need to do to only fill part of the image i am working on?

View 4 Replies View Related

Photoshop :: Paint Bucket Transparent?

Oct 25, 2005

I have an image which is a series of icons, on a colored background, and i want to get rid of the background, and have it as just transparent. The only way i can think of doing it, is by cutting each icon out individually,

View 5 Replies View Related

Photoshop :: Problem (with Paint Bucket Tool)

Aug 8, 2005

i cant use my paint bucket tool can anyone tell me y cant i use it.

View 5 Replies View Related

Photoshop :: Paint Bucket Tool Not Working

Mar 28, 2009

Ok, this is about as basic as you can get. What would prevent the paint bucket tool from working? Here are the steps I am taking to try to create a web page: Clicked on:

File->New Set 800 x 600, RGB Color, 72 Pix, and Contents is White.

Selected my foreground color and set it to E0EFFF

Clicked Paint bucket Tool

Clicked in the middle of the page.

Nothing happens.

Also tried using the Rectangular Marquee Tool to select an area within the page, and tried using the pain bucket to fill that in, but that didn't work either.

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved