Actually i am trying to convert rectangle to bitmap in wpf. Here what i have done means, First i have added that rectangle to canvas and then i am converting to bitmap. Here i have written the code for adding rectangle under form_load and to convert it to bitmap, i have written code under buttonclick. Then it is creating bitmap perfectly.
form_load....
Canvas can = new Canvas();
can.ClipToBounds=true;
Rectangle rect = new Rectangle();
rect.Height = 200;
rect.Width = 50;
can.Height = 200;
can.Width = 50;
rect.Fill = color.................
can.Children.add(rect);
button_click
TargetBitmapRenderer bit = new TargetBitmapRenderer((int)can.ActualWidth,(int)Can.ActualHeight, 96, 96, PixelFormats.Pbgra32);
......
.....
Above code working perfectly... But if write the code under button clik in formload event, The actual width and actual height of the canvas is zero that is why it is creating error....
BUt i want to create bitmaps dynamically in single block of code... Then Please suggest me some waye to achieve this.Thank you...