I want to fill a Rectangle with a LinearGradientBrush. With some Rectangles I get some strange behavior. Example:

Rectangle rect = new Rectangle( 20, 20, 20, 34 );
LinearGradientMode mode = LinearGradientMode.Vertical;
Brush brush = new LinearGradientBrush( rect, Color.White, Color.Blue, mode );
e.Graphics.FillRectangle( brush, rect );

Most Rectangles work OK, but some (like the one above) fill the first pixel row with the second color (blue in this case). See attached image:

Linear GradientBrush

Any ideas?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Make the brush one pixel taller:

LinearGradientMode mode = LinearGradientMode.Vertical;
Rectangle BrushRect = rect;
BrushRect.Inflate(0, 1);
Brush brush = new LinearGradientBrush(BrushRect, Color.White, Color.Blue, mode);
link|improve this answer
Good idea. That fixes it. But do you know why it happens at all? – EricSchaefer Mar 16 '11 at 14:59
1  
That works. Off-by-one bugs are a scourge in GDI+ – Hans Passant Mar 16 '11 at 14:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.