Tagged Questions

The BMP File Format, also known as Bitmap Image File or Device Independent Bitmap (DIB) file format or simply a Bitmap, is a Raster graphics image file format used to store bitmap digital images, independently of the display device (such as a graphics adapter), especially on Microsoft Windows and OS/2 operating systems.

learn more… | top users | synonyms

11
votes
2answers
21k views

C#: How to convert BITMAP byte array to JPEG format?

How can I convert a BITMAP in byte array format to JPEG format using .net 2.0?
9
votes
2answers
298 views

What are the most common non-BMP Unicode characters in actual use?

In your experience which Unicode characters, codepoints, ranges outside the BMP (Basic Multilingual Plane) are the most common so far? These are the ones which require 4 bytes in UTF-8 or surrogates ...
9
votes
1answer
492 views

JavaScript strings outside of the BMP

According to JavaScript: the Good Parts: JavaScript was built at a time when Unicode was a 16-bit character set, so all characters in JavaScript are 16 bits wide. This leads me to believe that ...
5
votes
6answers
7k views

How to draw 32-bit alpha channel bitmaps?

I need to create a custom control to display bmp images with alpha channel. The background can be painted in different colors and the images have shadows so I need to truly "paint" the alpha channel. ...
4
votes
2answers
72 views

Why are bmps stored upside down?

Why are BMP images stored upside down and zero-padded so they are four-byte aligned?
4
votes
2answers
144 views

Why doesn't ImageIO read a BMP file until it is re-saved in MS Paint?

I have a bitmap file, test3.bmp, which I can view and edit with every image viewer I have tested with. That said, I cannot read it into my Java application. If I edit the BMP in MS Paint, save it, ...
4
votes
3answers
2k views

Writing BMP image in pure c/c++ without other libraries

In my algorithm i need create information output. I must to write boolean matrix in bmp file. It must be monocromic image, where pixel is white if matrix on such element is true. Main problem is bmp ...
4
votes
3answers
7k views

How to create a BMP file from raw byte[] in Java

I have a C++ application which communicates with a camera and fetches raw image-data. I then have a Byte[] in C++, which i want to send to Java with JNI. However, i need to convert the raw Byte[] to ...
4
votes
6answers
11k views

C++: What's the simplest way to read and write BMP files using C++ on Windows?

I would like to load a BMP file, do some operations on it in memory, and output a new BMP file using C++ on Windows (Win32 native). I am aware of ImageMagick and it's C++ binding Magick++, but I think ...
3
votes
2answers
98 views

How to create a BMP file with pure python?

I need to create black and white bmp file with pure python. I read article on wikipedia about bmp file format, but I am not good at low level programming and want to fill this gap. So the question is ...
3
votes
1answer
152 views

How can I save my image as BMP format?

I know that I should use the compress method for saving a bitmap file. FileOutputStream fos = new FileOutputStream(imagefile); bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos); fos.flush(); ...
3
votes
1answer
633 views

java Buffered Image : Detecting black pixels

I have this simple code to go through a 24bit color windows bmp file BufferedImage mapa = BMPDecoder.read(new File("maps/map.bmp")); final int xmin = mapa.getMinX(); final int ymin = mapa.getMinY(); ...
3
votes
3answers
490 views

Java Read bmp files?

I'm working on a map editor for a simple map builder. My idea was to paint walls in the map as black pixels, everything else (white colour) is free space in a room. Any .jar to read bmp files ? So ...
3
votes
2answers
293 views

16-Bits BMP Validation

I'm developing a script using VBScript and I need to validate the input file as a 16-Bits BMP. At the time my script is like this: Const OverwriteExisting = TRUE Set objFSO = ...
3
votes
10answers
506 views

C++ struct size: 2+4+2+2+4 = 16 [closed]

Possible Duplicate: Why isn’t sizeof for a struct equal to the sum of sizeof of each member? Why is the sizeof(); of this structure 16 bytes? I'm compiling in g++. struct ...
3
votes
3answers
3k views

png to bmp

is there anyway that i can convert a png to a bmp in c# i want to download a image then convert it to a bmp then set it as the desktop background i have the downloading bit and the background bit ...
3
votes
6answers
2k views

Comparison of bmp files?

I want to compare two bmp files. I thought of two approaches: to compare the header as well as the information header of the two files convert the bmp file to binary and then do the above ...
3
votes
3answers
477 views

Writing BMP data getting garbage

I'm working on understanding and drawing my own DLL for PDF417 (2d barcodes). Anyhow, the actual drawing of the file is perfect, and in correct boundaries of 32 bits (as monochrome result). At the ...
3
votes
6answers
3k views

bmp loader library

I'm looking for a C library to load .BMP image-files. I've found a lot of code on the net, but everything I've seen so far is useless for me. Either the code seems to be in a good shape but it only ...
3
votes
4answers
2k views

How to access each byte in a bitmap image

Say I have a bitmap image, is it possible to iterate through all the individual bytes in the image? If yes, how?
2
votes
2answers
159 views

drawing a .bmp from a 2D array with c#

I'm trying to draw a bmp image file from a 2 dimensional Boolean array. The objective is the following i need to draw a small square for each value and the color depends on the boolean if true it ...
2
votes
2answers
127 views

1bpp Monochromatic BMP

I ran a demo bmp file format helper program "DDDemo.exe" to help me visualize the format of a 32x1 pixel bmp file (monochromatic). I'm okay with the the two header sections but dont seem to understand ...
2
votes
1answer
180 views

Fread returning 0, reading pixels from BMP file

I'm using this code to get the pixels from a bmp file. I have already read the headers and the palette in previous lines, so my FILE * is pointing to the beggining of the pixels array. It reads the ...
2
votes
2answers
503 views

Does the delphi TBitmap support an alpha channel

I'm hearing people say that it is not. However, I created a TBitmap and cleared the entire area by For I := 1 to bmp.Width do For J := 0 to bmp.Height do bmp.canvas.Pixels[I,J]:= $00000000; ...
2
votes
2answers
437 views

How do I re-set a BMP file's resolution (DPI) indicator?

I have a BMP tagged as 299 DPI resolution. I'd like to change that to 99 DPI. Importantly, the DPI marker in a BMP has no structural meaning. An image has a certain width and height in pixels. The ...
2
votes
2answers
456 views

How to tell the difference between the original .BMP/.EMF picture file with the processed .BMP/.EMF file?

Summarization: Calculations point out in a straight-forward way that: A .BMP picture of 3289 X 4570 X 32bpp takes about 53MB. The picture of same size but 24bpp takes about 43MB, that of 16bpp takes ...
2
votes
2answers
179 views

Rotating a bmp and displaying it right-side-up

I have an app that snaps a picture and displays the picture on an Imageview. The problem is, I can only snap a pic in landscape mode in order for the bmp to be displayed right side up - Is there a ...
2
votes
3answers
590 views

Is it possible to make a grayscale BMP file?

I am trying to make a program that outputs a 8-bit grayscale image to bmp file. I have found out that 8-bit BMP files are indexed. Is it possible to omit the color table and just put values instead of ...
2
votes
3answers
1k views

Getting the pixel value of BMP file

i got a question for reading an bmp image. How can i get the pixel value(R, G, B values) in an bmp image? Can anyone help me using the C programming language?
2
votes
3answers
1k views

How to create a bmp file from rgb datas stored in a txt file?

I've to create a bmp image from two txt files.The first one is an mxn array: * * * * * * * * m n c11 c21 .. cm1 ... c1n c2n .. cmn * * * * * * * * * * * * * * * * 6 5 .7 .7 .6 1.0 1.2 .1 .9 .3 .7 1.1 ...
2
votes
2answers
963 views

Need help on BMP to JPEG conversion

I'm writing a C++ program to convert a BMP image into a JPEG. Here's the basic algorithm I'm trying to follow: Convert RGB color space to Y,Cb,Cr.. Down sample Cb and Cr by 2 (that means for each ...
2
votes
6answers
1k views

Reading bytes from bmp file

How do I read the bytes from a bmp file using C?
2
votes
2answers
608 views

Migrating EJB2.x BMP entity beans

We use EJB2.x entity beans with BMP (bean managed persistence). It appears BMP is not supported in EJB3. We had wanted to stay current and upgrade to EJB3. Does anyone know if there are in fact any ...
1
vote
1answer
43 views

c++ opengl bmp and alpha channel

I have some bmp's saved in 32bit via photoshop. The first 24 bit should represent RGB and the last 8 bit should represent the alpha channel. I'm loading my bitmap: Bitmap* bStart = new ...
1
vote
3answers
84 views

reading a .bmp file in c++

I'm trying to load a bmp file for reusing it in opengl. I've found some code via google on how to load a bmp file. I took this code and put in a class Bitmap in my project. The class is far away from ...
1
vote
2answers
52 views

Replacing icon in Windows *.exe from open-source platform-independent Java code

First of all, this is not a duplicate of the very common question of making an EXE from Java classes. I do not need to do that. To solve NetBeans RFE #64612 without manual steps I need a Java (6+) ...
1
vote
1answer
55 views

Why is saved file from Java servlet a BMP when it should be a JPG?

I store JPG photos in a database table and use Java servlets to render them in my web pages. When I save one of my photos from my web page to my desktop, the browser saves the photo as a BMP file ...
1
vote
2answers
102 views

Why does fread mess with my byte order?

Im trying to parse a bmp file with fread() and when I begin to parse, it reverses the order of my bytes. typedef struct{ short magic_number; int file_size; short reserved_bytes[2]; ...
1
vote
0answers
41 views

Uncompression stops inbetween and output file filled with zeros(BLACK PIXELS)?

I am trying to apply DCT(discrete cosine transformation) compression on a bmp(bitmap) file. I have a c file which i am running in Turbo C++. The code is as follows: /* the image to be compressed is a ...
1
vote
3answers
114 views

Update image on button VB.net

I’m trying to make a button that displays an image, that’s easy, but the image is an editable icon so I want the image on the button to be updated every time the form is started how can this be done?
1
vote
0answers
20 views

How to save a 32bpp BMP file store in memory to a 24bpp BMP file?

I do have a 32bpp BMP image stored in memory and I want to save it to a 24bpp BMP file. How can I do that in C/C++ or Python? Usage of Windows API is acceptable, but not other third party ...
1
vote
2answers
65 views

Rendering alpha transparency in geometry and figuring out alpha color in bitmap - OpenGL

This is a two part question. I am rendering some BSP geometry and some of the textures have an alpha color which should be invisible. So the first step would be figuring out the alpha color so I can ...
1
vote
0answers
38 views

How do I display/zoom-in-on/drag a 150MB bmp image on screen in a WPF application without it being choppy?

I have an application that has a large area in which an image is viewed. The image fits on screen but has incredibly high resolution and is 150MB in size. The program allows the user to zoom in on ...
1
vote
1answer
246 views

WIA's ShowAcquireImage only saves in BMP?

I am using the WIA 2.0 library within Delphi XE to automate scanning. I am using the "ShowAcquireImage" function to provide an image to be saved to disc. I want to save the image in a compressed ...
1
vote
2answers
93 views

I get segmentation fault reading infoheader on a BMP using fread. How do I fix this please?

This is got me pretty stuck, how do I fix this? I know I haven't got error checking, but they aren't required i'd guess since it's restricted to my desktop. It obveously can't be EOF. It's for the ...
1
vote
1answer
112 views

How to convert 32-bit BMP to contain alpha channel?

I have an PNG image with alpha, I need to convert it to BMP to be loaded to my OpenGL application. However, BMP has only 1 option for 32-bit, that is XRBG where 'X' is just an extra byte for padding ...
1
vote
0answers
62 views

Will .Net's Bitmap.Save method always produce same BMP file with the proper PixelFormat setting

I need to load some image files and convert it to certain format of BMP files. The system is made up of a C# PC application and a embedded application. After conversion, the PC application downloads ...
1
vote
1answer
72 views

NSBitmapImageRep generated BMP can't be read on Windows

I have an NSBitmapImageRep that I am creating the following way: + (NSBitmapImageRep *)bitmapRepOfImage:(NSURL *)imageURL { CIImage *anImage = [CIImage imageWithContentsOfURL:imageURL]; ...
1
vote
2answers
148 views

Save HTML5 canvas as monochrome bmp

I have an HTML5 canvas element which I would like to save to the server as a monochrome bmp. I have seen examples online of saving it as a color bmp, but because of size and colorspace restrictions my ...
1
vote
0answers
130 views

How to convert RGB24 into BMP?

I am facing convertion problem in android problem is unable to convert RGB24 into BMP so that i can use imageview to draw bmp.But BitmapFactory.decodeByteArray failed to decode . it returns null. ...

1 2 3 4