A bitmap(BMP) is a raster graphics image file. It is also referred to as a Device Independent Bitmap (DIB).
Questions tagged [bitmapimage]
900 questions
-1
votes
1 answer
Looking for the name of the image upscaling algorithm that worked with only the original image?
There was a recent paper / article that described an algorithm for upscaling an image. I can't find the name of that algorithm or the article but it worked with a single image (rather than multiple) to achieve really good results. If I saw the name…

1.21 gigawatts
- 16,517
- 32
- 123
- 231
-1
votes
2 answers
Convert WriteableBitmap to BitmapImage using BmpBitmapEncoder WPF
I have a problem with Convert WriteableBitmap to BitmapImage using BmpBitmapEncoder.
this is my method:
public BitmapImage ConvertWriteableBitmapToBitmapImage(WriteableBitmap wbm)
{
bmp = new BitmapImage();
using…

Lukii007
- 85
- 1
- 3
- 4
-1
votes
2 answers
bitmap zip (BMZ) image creator or converter
i am trying to change the splash screen image while booting toradex colibri t20- from default toradex image to my custom image.
thing is that, only specific type of image format, called as .BMZ can only be used for customizing splash screen.
BMZ- it…

nihadh
- 13
- 2
-1
votes
5 answers
VB.net from string to bitmap
I'm using vb.net framework 4.5 .
From a 3th party I receive a CSV file. In one block their is a BMP image.
I read it from the file as a string.
I want to convert this BMP to a JPG.
I learned about the bitmap class in the .net framework. This could…

Walt501
- 53
- 1
- 3
- 6
-1
votes
1 answer
How to Display images randomly
public class GameView extends View {
private Bitmap bmp1;
private Bitmap bmp2;
private Bitmap bmp3;
private Bitmap bmp4;
private Bitmap bmp5;
private Bitmap bmp6;
public GameView(Context context) {
…

Reta Adam
- 5
- 1
-1
votes
3 answers
Exception : main java.lang.OutOfMemoryError
I get this error sometimes when I run my app. There is no problem when i compile the application. Sometimes it breaks an i get this message from logcat :
E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.OutOfMemoryError
at…

eren
- 59
- 1
- 8
-1
votes
1 answer
BitmapImage to Byte[] in WPF
Private Function BufferFromImage(imageSource As BitmapImage) As Byte()
If Not IsNothing(imageSource) Then
Dim encoder As New BmpBitmapEncoder
encoder.Frames.Add(BitmapFrame.Create(imageSource))
Using ms As New…
-1
votes
1 answer
Conversion of a Bitmap to Pixel Array for Microsoft OCR C#
I'm working with Microsoft's OCR library and am having problems converting the BitmapImage to a pixel array.
I'm making this application for Windows Phone 8, and WriteableBitmap.PixelBuffer.ToArray() isn't an option so I have a static function…

Wezley
- 413
- 1
- 3
- 19
-1
votes
1 answer
Array of Bitmap not initialized in Android
I am working with Bitmap in android.
In AsyncTask's doInBackgroud method I did the following code
protected Bitmap[] doInBackground(Object... params) {
hMap = new ConcurrentHashMap>();
hMap =…

Karthikeyan Ve
- 2,550
- 4
- 22
- 40
-1
votes
1 answer
DWM, how to not render a window?
My application is a fullscreen window rendering a specified window or the desktop.
I would like to know if it's possible to fetch the window bitmap (like i'm already doing) but without the render of my window's application ?
There is the idea :…

Erwan Douaille
- 553
- 1
- 10
- 31
-1
votes
1 answer
add bitmap image in listview in android
Can you suggest me any tutorial that how to add bitmap in listview. I got an image from json data and need to put that in listView.Thanks in advance for your suggestions.

Prathyusha
- 169
- 2
- 10
-1
votes
1 answer
How to upload multiple image from SD Card to google Drive?
I am designing Android Application which will upload image files from particular folder in SD card to Google drive. But i am getting
E/AndroidRuntime( 6808): FATAL EXCEPTION: main
E/AndroidRuntime( 6808): java.lang.OutOfMemoryError error while…
-1
votes
1 answer
Create image from pixels
I have an array of ARGB pixels:
for(int i = 0; i < 256; i++)
{
black_to_white[i] = 0xFF000000 | (i << 0) | (i << 8) | (i << 16);
}
I need from this create Bitmap that in result should look like this:
How from this integer array I crate an image to…

Dim
- 4,527
- 15
- 80
- 139
-1
votes
1 answer
How to convert Bitmap to BitmapImage for WPF VB.NET
I'm trying to convert a Bitmap to a BitmapImage in WPF. Basically, I'm starting with a Bitmap created in memory (from another process) and I need to use it elsewhere, but as a BitmapImage.
I found this answer question 6484357, but the author's…

MC9000
- 2,076
- 7
- 45
- 80
-1
votes
1 answer
Convert colored picture in monochrome on button event in MFC SDI application?
I have made an application where in i have to load a btimap and on button event i have to change color depth of the bitmap, I have successfully made the changes for RGB, by manipulating the RGBQUAD of the bitmap. But i am stuck at this point where i…

xMayank
- 1
- 4