0
votes
1answer
35 views

C Read colors from Bitmap

Im'm loading the color of a pixel and writes a one-byte variable. When I want to read this color (for red pixel) should get the result: 255 However, the value is: 4294967296. From this it follows that ...
2
votes
1answer
85 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
3answers
86 views

Unpacking (r,g,b) raw pixel buffer in C

currently trying to use C for a job previously done in python (pypy). I figured i'd try to write it in C (for optimal speed), and use the ctypes to communicate. Now what I want to do is to take the ...
0
votes
3answers
72 views

Need help understanding bitmaps, bitwise operations, and C

Disclaimer: I am asking these questions in relation to an assignment. The assignment itself calls for implementing a bitmap and doing some operations with that, but that is not what I am asking about. ...
0
votes
1answer
119 views

Read BMP file and rotate

I'm trying to read a BMP file and save it in a buffer with 2 dimension in order to rotate it in a right angle. However, the final file is not correct and cannnot be displayed. What is the problem in ...
0
votes
1answer
66 views

Skip over padding in a bitmap-to-string converter?

I have the following algorithm for converting a 24-bit bitmap to a hexadecimal string representation of the pixels it is composed of: // *data = previously returned data from a call to GetDIBits // ...
2
votes
3answers
88 views

Find the first zero in a bitarray

I have a bitmap uint64_t bitmap[10000] to keep track of the resources allocated in the system. Now the question is how do efficiently I find the first unset(zero) bit in this bitmap? I am aware ...
1
vote
1answer
160 views

Bitmaps to Avi using Video for Windows, C

I need some help creating an avi File out of Bitmaps. The Problem is that in the End i get a corrupted avi File. If I read it with a HEX_Editor the whole avi Header is 0... I use Borland C++ Builder ...
0
votes
1answer
125 views

Processing bitmap header

I have two questions about the BITMAPFILEHEADER structure. First, if we make our own version of that structure the assigned memory would be 16 bytes because of Data Structure Alignment. But that of ...
0
votes
1answer
60 views

Parameters to be passed to the CreateDIBSection function

I have a color image with number of rows 479 and columns 638. I am trying to save this image as a BMP file. For this I am first using CreateDIBSection and then using CreateDIBitmap. For the ...
3
votes
1answer
134 views

explanation required - Number of bits set in a number [closed]

the following the magical formula which gives the number of bits set in a number. /*Code to Calculate count of set bits in a number*/ int c; int v = 7; v = v - ((v >> 1) & 0x55555555); ...
1
vote
2answers
103 views

Advice on an algorithm for rendering a bitmap pixel by pixel

I've been working on a bitmap loader, with the main goal to do nothing more than parse the data properly and render it in OpenGL. I'm at the point where I need to draw the pixels on an x/y (i.e., ...
2
votes
2answers
1k views

read bitmap file into structure

I would like to read a bitmap file into a struct and manuplate it like make a mirror effect etc. but I cannot understand which kind of struct should i be creating in order to read into it. Thank you ...
2
votes
2answers
145 views

Bitmap rendering methodology in OpenGL?

I've been working on a bit of a bitmap parser lately in pure C just to understand the low level workings of simpler image formats. So far, using Wikipedia's article on bitmap files, I've been able to ...
0
votes
1answer
122 views

Create a bitmap in memory and use it

My goal is to create a bitmap in memory and use its handle as a parameter of the BM_SETIMAGE message (a message that set a button's bitmap). The following is my code: ........ HDC hdc = ...
1
vote
2answers
329 views

bitmap image file manipulation using bitmap file structure in c

I want to implement a simple command line based image editor. The program will provide a text based menu, which provides several functions for user to manipulate a windows bitmap (.bmp) image file. ...
0
votes
1answer
114 views

Reading and writing bitmaps in c

I'm trying to create an application that inverts the colors of a bitmap file but am having some trouble with actually gathering the data and from the bitmap. I'm using structures to keep the data for ...
0
votes
3answers
251 views

Access to bytes array of a Bitmap

1- In Windows CE, I have a Bitmap object in C#. 2- I have a C function in an extern dll that expects as parameters the pointer to a bytes array that represents an image in RGB565 format, width and ...
0
votes
2answers
148 views

huge bitarray/bit map declaration in C

I am trying to write a bloom filter that stores say around 80,000 strings...Now i am guessing each string can be 2words length. To store 80,000 strings..i'll need 80,000*2 = 16kBytes? If I have to ...
-2
votes
1answer
48 views

How do i check if atleast one element of bitmap array is not zero?

I am not looking for a funtion in c ,A macro would be helpful .This is how i would like to use the bitmap. Usage : int bitmap; if(bitmap != 0) do something else do something suppose bit map ...
0
votes
2answers
79 views

How to generalize my code

I am working on some bitmap fonts. The idea here is that I am given two files (input.txt and font.txt). I have to read a string from input.txt and transform it using the contents of font.txt and then ...
0
votes
1answer
251 views

Cannot Add Control Variable

I have an application that I want to add a picture control and show some bitmap images inside it. However, I can't add a control variable to the picture control. In the beginning, I couldn't even ...
0
votes
1answer
123 views

change HBITMAP resolution for reducing file size

i create screenshot of desktop as bitmap file. What is best method to reduce the resolution of this large image file (~3 MB) in win32 C? I want to send it over the network, so the file should be ...
2
votes
2answers
988 views

What is a good, optimized C/C++ algorithm for converting a 24-bit bitmap to 16-bit with dithering?

I've been looking for an optimized (i.e., quick) algorithm that converts a 24-bit RGB bitmap to a 16-bit (RGB565) bitmap using dithering. I'm looking for something in C/C++ where I can actually ...
0
votes
3answers
200 views

Parsing BMP-file from mysql blob in cpp

I need to get hold of the width and height values from the bmp so that I can pass those as arguments when I later create a gdk pixmap from the raw pixeldata in the bitmap. I did some research on the ...
5
votes
1answer
2k views

reading/writing bmp files in c

I'm trying to work on a bmp file. For a start i tried to read a header and a data from a bmp file and to write it to a new file: #pragma pack(push,1) /* Windows 3.x bitmap file header */ typedef ...
4
votes
2answers
2k views

Creating a BMP file (bitmap) in C

I'm trying to make a bitmap in C, just from code. I'm currently trying to make a very easy .bmp image, with a height of 1px and a width of 4 pixels, with all white pixels. I have read the format ...
2
votes
1answer
462 views

Fast 32-bit array -> 24-bit array conversion in SSE3? (RGB32 -> RGB24)

This question is related to a previously answered question: Fast 24-bit array -> 32-bit array conversion? In one answer, interjay kindly posted SSE3 code for converting RGB24 -> RGB32, however I also ...
0
votes
0answers
642 views

Access RGB of each pixels in bitmap using C Win32

I have a demo program written in plain C win32. The program is using a framegrabber to grab images from the camera and store them in a main memory buffer (images are 8bit/pixel grayscale). The demo ...
0
votes
1answer
227 views

Display Dialog Bitmap

Hi all I am fairly new to win api and am using C. I was wondering how would I display a banner on my dialog application. I have managed to load the application icon with the following code. ...
1
vote
1answer
89 views

Streaming Desktop over Diffrent Platforms for Speed

I needed to create a small remote desktop software in 'C' that compiles on various platforms (linux, freebsd, windows...) i've been looking into various image formats for a while, but still couldn't ...
2
votes
2answers
471 views

C Buffer to C# Bitmap Object

I have a buffer (uint8[] of BGR pixel data) in C holding a video frame. A pointer to this buffer is passed back by the C code to C# code as an IntPtr. I require to add a text overlay to the each frame ...
1
vote
4answers
786 views

Reading bitmap header, getting reversed values

I'm trying to read the bitmap header. I have defined the following struct: typedef struct { char magic[2]; char size[4]; char reserved[4]; char offset[4]; char dibbytes[4]; ...
1
vote
1answer
124 views

Changing pixels of Win32 window

I know that this may be common knowledge, but is there a way to edit RGB values of pixels of Windows window from C/C++ without using libraries like OpenGL or DirectX? If there is, what are the ...
0
votes
2answers
239 views

creating a bitmap image from existing bitmap, in C

I am writing a C program, which will retrieve the information (header information, pixel information) from a bitmap image, and use that information to create another bitmap image (the new image will ...
-2
votes
2answers
336 views

Reading and writing bmp, dib, dds file formats? [closed]

I'm working with DDS and BMP/DIB image files. I need to load, save and do some conversions with the image file data by programming. Does anyone know some open sources or other public samples with ...
0
votes
1answer
317 views

How do I convert an rgb image array from sws_scale to DIB (in memory bitmap)

I am decoding video frames from a stream and sws_scale gives me a buffer of decoded RGB image data (PIX_FMT_RGB24). I have an existing front-end application that requires the input be DIB. So I need ...
14
votes
2answers
1k views

Filling the data in an Android bitmap as quickly as possible from C

I've managed to get an android.graphics.Bitmap created and I'm successfully filling it via the SetPixels command. The problem is that I start off with RGBA data. I then create a jintArray. I then ...
1
vote
1answer
169 views

WM_PAINT doesn't show up after painting

So i'm painting a bitmap, heres my code: hdcMem = CreateCompatibleDC(hdc); SelectObject(hdcMem, g_hBitmap); GetObject(g_hBitmap, sizeof(bm), &bm); BitBlt(hdc, 196 - (bm.bmWidth/2), 90, bm.bmWidth, ...
1
vote
3answers
408 views

explanation of bit array implementation in C-FAQ

I was reading the C-FAQ question no: 20.8 which basically deals with bit arrays: http://c-faq.com/misc/bitsets.html One of the macros defined looks something like: #define BITNSLOTS(nb) ((nb + ...
0
votes
2answers
83 views

Querying a bitmap distinguishing 0-values

I'm writing a piece of software that will process huge amounts of data. For memory efficiency, some of the fields in the records being processed are stored in a single bitmap. Using #defines I ...
2
votes
1answer
510 views

write XImage to .bmp file in C

I am writing an XImage to a file "bitmap0.bmp" using the following code but when i open the newly created file with imageViewer in fedora it gives "Premature end of file" error and does not display ...
1
vote
2answers
338 views

Grapheme generation - time vs. memory complexity

I am writing a program to generate 'multigraph' data from text files, which are basically mappings between graphemes and their frequency of occurrence in the text file, for example: aaaa : 0 aaab : 0 ...
0
votes
2answers
389 views

read a disk block as bitmap

I am trying to read a block which contains block bitmap and inode bitmap I read a block as a unsigned char array than I convert it to binary as follows: for (i = 0; i < 4096; i++) { for (j = ...
0
votes
2answers
208 views

Bitmap point processing

would appreciate some brainstorming help for one of my assignments. I am to write a program that does basic point processing of a .bmp image. Program will open a .bmp file for reading and writing and ...
2
votes
1answer
143 views

Extracting the “n”th image out of a bmp (or other image type)

I have a bmp image that's comprised of 13 images, and each image is exactly 17x17. Aside from breaking this image down through gimp into 13 different images, what is a good way to 'extract' the nth ...
1
vote
4answers
543 views

a bit map in c++ - will unsigned int do the job?

I'm afraid to admit, I haven't used C++ for a while now but i'm afraid I have to now, and I'm a bit rusty. I need to have a bitmap, and I do care about performance, my bitmap size will be no longer ...
2
votes
2answers
1k views

Reading the BGR colors from a bitmap in C

I was trying to obtain the rgb values from a 24 bit bmp file, just like user30750. The image that i am using is a tiny image all red, so all pixels bgr configuration should be B:0 G:0 R:255. I do ...
1
vote
2answers
96 views

GetObject fails on a text cursor

I'm trying to fetch the cursor bitmap in order to compute a snapshot with the mouse cursor. It works fine with the standard cursor (IE. the arrow) but it fails as soon as the cursor becomes a text ...
0
votes
6answers
193 views

Representing a very large array of bits in little memory

I would like to represent a structure containing 250 M states(1 bit each) somehow into as less memory as possible (100 k maximum). The operations on it are set/get. I cold not say that it's dense or ...

1 2