I use VS 2012 - .NET 4.5.
I have any image. Now, I want France flag cover (image effect) about my image like Facebook does France flag facebook cover
, maybe applies effects for colors f40323,ffffff,228eff (Red, White, and Blue), opacity and direction: changes the stripe direction Values: horizontal, vertical, diagonalleft, diagonalright, chevronhorizontal, chevronvertical
I think, using Graphics.FillRectangle(Brushes.Blue
Any suggestions?
http://rainbowfilter.io/france?colors=f40323,ffffff,228eff
http://progzoo.net/wiki/C%23:Flags_with_Rectangles_Tutorial
static void drawFlag(Graphics g)
{
g.FillRectangle(Brushes.Blue,100,0,100,200);
}