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 ...

learn more… | top users | synonyms

0
votes
0answers
24 views

How do you load a bmp file from external local files?

In AS3 adobe Flash : How do you load a bmp (not jpg or png) files from external local files (example: my_application_path/mybmpfiles/hello.bmp), as long as I tried it's always failed, but not error ...
0
votes
1answer
37 views

c# converting list of BMP to array of DICOM files

I can convert bitmap to DICOM using the following: Bitmap bmp = new Bitmap(System.Drawing.Image.FromFile(System.Web.HttpContext.Current.Server.MapPath("~/FileName))); Color c = ...
0
votes
0answers
14 views

imagecreatefrombmp not working on php

i am trying to half the size of bmp image from php. PHO gd doesnt have a imagecreatefrombmp so i have to include seperate function. But my code doesnt seems to be working. It works well with jpeg. ...
2
votes
0answers
32 views

Can a .BMP file be stored in an HTA (HTML/VBScript)?

I've noticed in a backup of my FireFox bookmarks that the icon which is displayed to the left of each entry is held as a character stream in the A tags. For example: ...
0
votes
1answer
42 views

Converting FileStream to WriteableBitmap to JPEG to Byte Array for SSRS

I'm trying to save an Image to SQL Server so SSRS can read it. I need to convert to WriteableBitmap (and possibly JPEG?) so I can make changes to the image size before saving. However, when I try to ...
0
votes
0answers
20 views

Visual Studio 2012 - vshost32-clr2.exe has stopped working

I'm creating a WinForm Application in C# using Visual Studio 2012 and I'm getting an error when I debug it : vshost32-clr2.exe has stopped working I already searched but most results are for Visual ...
1
vote
1answer
55 views

C# - Creating BMP from Bytes

I'm creating a WinForm Application in C# that I can use to "sniff out" some 24 bit bitmaps in a file. I already gathered information such as its offset, some analysis on how it is written in the file, ...
1
vote
2answers
73 views

Hide text in .bmp

I've made this function in C to put text inside a bmp image. I've tried to make it change only the least significant pixel of the red color. But when I open the edited image the blue is changed. The ...
0
votes
0answers
26 views

C++ how to get data size of clipboard bmp image

So far the problem is getting image's size (but also might be something in addition to that) unsigned char* dstTmp = NULL; FILE *file; file =fopen("C:/1.bmp","rb"); fseek (file , 0 , SEEK_END); ...
0
votes
0answers
17 views

Reading in a BMP Heightmap

I am trying to load in a height map using C++ with DirectX. As a test I created a BMP file that is all black, so the terrain should be flat. Part of the edge is not flat though. Can anyone tell me ...
0
votes
2answers
62 views

Problems loading bitmap data into an OpenGL texture

Unfortunatly, I have some problems with glBindTexture(). When I try to bind a bitmap image to my skybox I only see some white. I tested it with other figures and also that does not work. I am sure ...
0
votes
1answer
26 views

Matlab: Load .tif > convert bmp 256 > convert bmp 24-bit

For some coding I would like to do the following: Read .tif file Convert to .bmp with 256 colours (got this from paint, can't find it in matlab!) Convert to .bmp with 24-bit (normal conversion to ...
-2
votes
2answers
30 views

Better image editor like mspaint? [closed]

When trying to save a BMP format image captured by external camera and accessed using mspaint.exe, there are some conversion loss occurring. When the image is compared with a selected co-ordinate ...
0
votes
0answers
21 views

Error with BMP reading on Android

i've a problem with the BitmapFactory on Android. I'm trying to read an image (in bmp or jpg) from a folder that i've created in the workspace of my project with this code: public class Eigen extends ...
0
votes
3answers
37 views

Is there an algorithm to compress multiple images that are not much different apart?

I have a set of 100+ images that only differ a few pixels. They also don't have many different colors. Is there a way to compress them together by taking advantage of that?
0
votes
1answer
82 views

Where exactly do I add my BMP files in my OpenGL C++ project? Using Xcode for the Mac

I have my code working perfectly on Visual Studio C++ with OpenGL. The code is able to call the images folder. And when I run the program the images show up on my application. Now I am trying to run ...
0
votes
2answers
60 views

Convert BMP to pure RGB, no color map?

Using the EasyBMP library (a close adaptation, anyway), I have code to convert a BMP to greyscale. int monochromeValue (RGBApixel foo) { return (foo.Red+foo.Green+foo.Blue)/3; } void setToColor ...
0
votes
2answers
97 views

How to open a bmp image file from C program

What I want it not the normal fopen() function. I want to open the image, as in, when I double click on the image, then the way it opens in the imageViewer. I want to open it like that. Is there any ...
2
votes
1answer
86 views

Drawing bitmap from memory

I need to create the HBITMAP. Here lies the problem. I have the bmp file's content in memory. I know how to create a HBITMAP if the bitmap was as a resource. But since it is in memory, I don't know ...
0
votes
1answer
87 views

Decode .bmp image

I just started studying computer science and our teacher gave us this small, but tricky programming assignment. I need to decode a .bmp image http://postimg.org/image/vgtcka251/ our teacher have ...
-1
votes
2answers
118 views

Get the RGB value of each pixel from bmp file

So I have a bmp file, and I want to extract the details of rgb for every pixel of the image. I read somewhere that the following would do this for me int main(){ int image[100][3]; // first number ...
0
votes
1answer
45 views

how to compress a bmp image in unix

I need to insert an image into an xls using the xlwt module of python. And the xlwt module seems to support only .bmp images. So which is the best way to compress a .bmp image in unix without much ...
0
votes
1answer
72 views

Converting pixels in this code

I seem to have hit a stump in a small programming assignment(Please dont tell me how to do the entire problem, i just want to know how to set every byte to red). The code i have is following: ...
0
votes
1answer
153 views

C++ reading BMP file works only when row padding is equal to 3 bytes

I have a trouble with reading bitmap files in C++. My code works only when row padding is equal to 3 bytes. Any other padding makes strange things - sometimes I can't read output file and sometimes I ...
0
votes
1answer
52 views

Loading an bmp using ImageMagick

I'l loading a bmp image using Image Magisk like this: #include <Magick++.h> #include <iostream> using namespace std; int main(int argc,char **argv) { ...
0
votes
3answers
81 views

Not able to read whole file

I'm making a C++ to be able to open a .bmp image and then being able to put it in a 2D array. Right now i have the code like this: #include <iostream> #include <fstream> #include ...
0
votes
2answers
69 views

Android save bmp image

I'm trying to save a captured .bmp file to sdcard. Here is a fragment of code which is responsible for this: String root = Environment.getExternalStorageDirectory().toString(); File mFolder ...
0
votes
0answers
74 views

write from richtextbox to bmp with same text position , font, color?

how can I write from richtextbox to jpg with same text position , font, color?in this code when I write any text my jpg hide from picture box and text show alone without any jpg Public Class Form1 ...
5
votes
2answers
176 views

What is XPS files and how it is being used

I have a simple C# .net web application. In that Im working with XPS files. I have used the following code private void button1_Click(object sender, EventArgs e) { try ...
-3
votes
1answer
90 views

grey scale conversion in C# [closed]

public void cmdInit_Click(object sender, EventArgs e) { clsData obj; nobj.inpsize = 651; nobj.hid1size = 96; nobj.hid2size = 144; nobj.outsize=5; ...
0
votes
1answer
149 views

Convert image (.jpg, .png…) to 1bit (monochrome) .bmp with php

Currently i have a code/class in php to convert some image types (jpg, png...) to .bmp The code that i have is on pastebin (too big to put here) pastebin (dot) com/7nFbKFjh Im now in need of help ...
1
vote
1answer
98 views

Bitmap image to hexadecimal conversion

I am looking for a development tool which can convert a standard bitmap image into an array of hexadecimal values. Is there such a thing but, if not, how would I go about doing this on my own?
1
vote
1answer
49 views

C++ Image analyzing + pressing buttons

I have an idea to make a program that would analyze a running program, make a decision and push one of three buttons in that program. I want to ask: A) How should image analyzing work? My idea is ...
0
votes
1answer
76 views

BMP RFC can't get size of file not from stream size BUT from header info

Trying to get the valid size of BMP file. Of course the best way is just to get the Length property of the loaded stream. But BMP header format DOES include the information about its size and I want ...
2
votes
1answer
79 views

How to store ASCII information in Bitmap header?

I see there is an area in the bitmap header to store additional information. So if I were to write an image in C#, would it be possible for me to add extra ASCII information in the header? public ...
0
votes
0answers
69 views

“sketch and cartoon”ing an image with EasyBMP in C++

I use easyBMP library I use The Following Code here img is read and my is written: #define CON 15 BMP img,my; int get_diff(RGBApixel x,RGBApixel y) { int d=0; d+=abs(x.Red-y.Red); ...
1
vote
1answer
101 views

reading a .bmp file c ++, wrong values?

Here's my code for reading from a bmp file(using windows.h). It reads the correct values from BITMAPFILEHEADER, yet all the values read from BITMAPINFOHEADER are 40(28 in hex). what is wrong? ...
3
votes
1answer
121 views

How to control the pixel size of the color model of an ErrorDiffusionDescriptor?

I am trying to convert a direct color model image to a bitonal indexed image (1 bit per pixel) and save the indexed image as a BMP. As stated on the Java Advanced Imaging API Home Page: The bit ...
2
votes
1answer
64 views

How to use ColorQuantizerDescriptor?

Following the idea of @PhiLho's answer to How to convert a BufferedImage to 8 bit?, I want to use ColorQuantizerDescriptor to convert a BufferedImage, imageType TYPE_INT_RGB, but ...
2
votes
3answers
263 views

Convert image to matrix [closed]

I am trying to convert an image (lets say black and white) to a Matrix (where 0 = black and 1 = white) i tried with this code : procedure TForm1.Button1Click(Sender: TObject); type tab = ...
1
vote
1answer
172 views

VBA manually create BMP

I am working on a VBA class to create QR codes and I am getting stumped at the point where I write the QR data bits to an actual BMP file. To get the hang of the BMP structure and the code I could I ...
1
vote
1answer
200 views

BMP file format not read properly?

Hey folks! I got this image.bmp. When i read it with all padding included and such i get this result. What am i doing wrong here besides reading the image upside down? I don't find anything relative ...
4
votes
2answers
567 views

C# Console Application - How to draw in BMP/JPG file using GDI+?

I want to draw shapes like rectangles, arrows, text, lines in a BMP or JPG file, using a C# Console Application and GDI+. This is what I found on the web: c# save System.Drawing.Graphics to file c# ...
0
votes
1answer
313 views

iOS : converting png image to 1 bit bmp images

My requirement is to convert a png file into 1 bit monochrome bitmap file. I have a UIImage object and I want to get the representation of it as a 1 bit monochrome bmp. 1) Is there any ...
0
votes
0answers
126 views

transfer bmp file from C to C#

I'm using bmpfile.h a open source library to create bitmap files ( http://code.google.com/p/libbmp/source/browse/trunk/src/bmpfile.h ) in C.I use this library because Im writing other library to open ...
0
votes
2answers
93 views

reading BMP BGR values, passing to glTexImage2D

I've written a routine to read all pixel values from inside a BMP file to an array which I want to feed to glTexImage2D of openGL to turn it into a texture. Doing this I realised that the actual ...
0
votes
1answer
115 views

Python read() automatically converts hex to char?

I'm trying to convert a 4x4, 5.6.5.0.0, .bmp file into a list of rgb values to plug into another program that needs a specific format, and I'm getting stuck because I think the read() method in Python ...
0
votes
2answers
294 views

Reading/writing a bmp file

I wrote a code to simply read/write (copy) a *.bmp file. But something is wrong my program runs over and over and over again ... I mean it looks like there is a while(true) loop inside or something. ...
0
votes
2answers
129 views

Sampling an Image in C# with a TextureBrush repeatedly

So I'm creating a program in C# that takes an image and splits it up into tiles. I'm at the point where I want to take the big image and chop it up into difrent tiles and save each tile. The problem ...
1
vote
2answers
212 views

Java BMP Header files

I try to make a BMP file from BufferedImage. Here is function with that I try to write the header and pixels in bmp file. I have a mistake but I can't find that. I need your help. static void ...

1 2 3 4 5 7