![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | Generate an Image with WPF I need to draw a black circle using WPF and generate an image file. I used the following but it resulted in a blank file. I cannot figure out what is wrong with it. Thanks, Tem RenderTargetBitmap rtb = new RenderTargetBitmap(200, 200, 96, 96, PixelFormats.Pbgra32); Ellipse cir = new Ellipse(); cir.Height = 50; cir.Width = 50; cir.Stroke = Brushes.Black; cir.StrokeThickness = 1.0; rtb.Render(cir); PngBitmapEncoder png = new PngBitmapEncoder(); png.Frames.Add(BitmapFrame.Create(rtb)); using (Stream fs= File.Create("test.png")) { png.Save(fs); } |
My System Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Hibernate Warning. How Do I Generate One? | General Discussion | |||
| Image thumbnails generate then disappear | Vista General | |||
| Generate script | VB Script | |||
| cannot generate thumbnail view of image | Vista General | |||