About 32,900 results
Open links in new tab
  1. image - How do I add a resource as a bitmap to my C# project in …

    Nov 1, 2024 · The latest Visual Studio can choose Bitmap as the image type now: I think this is a problem with the new resource editor, you can use the legacy editor to add images as Bitmap …

  2. How to convert a Base64 string into a Bitmap image to show it in a ...

    Jan 29, 2011 · I have a Base64 String that represents a BitMap image. I need to transform that String into a BitMap image again to use it on a ImageView in my Android app How to do it? …

  3. c# - WPF - converting Bitmap to ImageSource - Stack Overflow

    I need to convert a System.Drawing.Bitmap into System.Windows.Media.ImageSource class in order to bind it into a HeaderImage control of a WizardPage (Extended WPF toolkit). The …

  4. c# - How to create bitmap from byte array? - Stack Overflow

    Feb 4, 2014 · Bitmap bmp; using (var ms = new MemoryStream(imageData)) { bmp = new Bitmap(ms); } That uses the Bitmap(Stream stream) constructor overload. UPDATE: keep in …

  5. c# - Write text on bitmap - Stack Overflow

    I have following problem. I want to make some graphics in c# windows form. I want to read bitmap to my program and after it write some text on this bitmap. In the end I want this picture load to

  6. Load image from resources area of project in C# - Stack Overflow

    Jul 28, 2009 · I have an image in my project stored at Resources/myimage.jpg. How can I dynamically load this image into Bitmap object?

  7. python - Transform an image to a bitmap - Stack Overflow

    Sep 24, 2017 · I'm trying to create like a bitmap for an image of a letter but I'm not having the desired result. It's been a few days that I started working with images. I tried to read the …

  8. c# - Convert a bitmap into a byte array - Stack Overflow

    Sep 8, 2011 · Using C#, is there a better way to convert a Windows Bitmap to a byte[] than saving to a temporary file and reading the result using a FileStream?

  9. how to add bitmap image to buttons in MFC? - Stack Overflow

    Jan 12, 2010 · Steps for assigning bitmap to button in mfc : Create object of bitmap Load bitmap by using LoadBitmap () Get Handle of button using id and GetDlgItem () method Modify style …

  10. c# - Draw a Bitmap image on the screen - Stack Overflow

    Draw a Bitmap image on the screen Asked 13 years, 2 months ago Modified 2 years, 9 months ago Viewed 45k times