Tagged Questions
-1
votes
0answers
29 views
Need to create a new bitmap filled with black Win32
The title is not entirely clear.
I am making a map editor that allows the user to create maps using tiles. The map files created will be used with another graphics library. That library supports ...
1
vote
1answer
26 views
create image list from resource file - win32
I have in .rc file several images, for example:
IDB_COPY BITMAP "copy.bmp"
IDB_CUT BITMAP "cut.bmp"
IDB_PASTE BITMAP "paste.bmp"
And I want to load them all into ImageList.
if I will write
...
1
vote
1answer
24 views
create toolbar with my bitmap images
this is an example code of msdn to create toolbar, but this example use the standard images of the system.
What do I need to change in this code to use my images from resource file, for example: ...
0
votes
1answer
52 views
drawing in Windows memory device context - resolution?
I am trying to export a plot generated by my program in the form of a bitmap. No problem with creating a bitmap in memory (with CreateDIBSection) and saving it on the disk (using GDI+). To draw I have ...
-1
votes
1answer
42 views
C++ LoadImage Bug Exclusive to Release Mode
I've been trying to do something supposedly simple, but as usual, it's not working for me, in dubious circumstances. What I want to do is simply load a bitmap to the screen and keep it there. The ...
0
votes
1answer
80 views
Real time drawing in GDI
I'm currently writing a 3D renderer (for fun and research), so I need a way to draw my framebuffer to a window. Since I'm doing all of my calculations on CPU, the drawing needs to be as fast as ...
2
votes
1answer
91 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 ...
1
vote
1answer
70 views
c++,bitmap won't show?
The bitmap will not display when the left mouse button is clicked.
I'm using visual c++ express
HDC DC, memDC;
switch(message) {
case WM_CREATE:
hBit1 = LoadBitmap(hInst, "C:\New folder ...
1
vote
2answers
305 views
Displaying all Bitmap Types from a Memory Buffer with MFC or Win32
The goal is to display bitmaps stored in memory buffers. The contents of the memory buffers are identical to disk-stored .bmp files. For performance reasons, writing these buffers to disk and then ...
6
votes
1answer
172 views
Converting HBitmap into byte array in Delphi
I am trying to convert hBitmap to array of bytes but I don't want to use TBitmap from unit Graphics.
My input image is 128x64x32bit.
var TheBits: array of array of Cardinal;
begin
with ...
3
votes
1answer
189 views
Create a HBITMAP which points to an existing memory buffer
I am using the FreeImage library to store and manipulate bitmap data. Part of my code requires me to take a screenshot of a window (in Windows), and store it as a FBITMAP* (FreeImage's bitmap data ...
0
votes
1answer
153 views
GetDIBits: Where's that pixel? (x, y coordinates)
So, I'm testing the following function FindPixel with the following app. The HWND and COLORREF are constants that I've determined with Spy++ and Color Cop for debugging; the final version of the ...
0
votes
1answer
98 views
Access pixels of 24-bit bitmap, without using GetPixel()?
I am currently looking for a way to access and test the individual pixels of a copied bitmap from a target window, without using the very slow GetPixel() method. Given that memDC contains a copy of ...
0
votes
0answers
32 views
Windows: How to take a Screenshot of a Window programmatically? [duplicate]
I'm trying to use Windows APIs to take a screen shot of a window. Here is my current code:
//Grab the window
HWND window = me;//GetForegroundWindow();
HDC context = GetDC(window);
RECT windowRect;
...
1
vote
2answers
220 views
Get a HBITMAP from an 24bit BMP file loaded into memory
I have a 24bit BMP file loaded into RAM and I'm trying to create a HBITMAP for this image file. I have found some examples around which I've been experimenting with, but can't seem to make work. ...
0
votes
0answers
13 views
How to Create and Use a Gray, Indexed Bitmap with WinApi? [duplicate]
I have successfully created a 32-bit Bitmap with CreateCompatibleDC, CreateBitmap. But I REALLY need a 8-bit bitmap. How do I approach this task ? In my last tries I saw that it might be possible with ...
0
votes
1answer
267 views
WinApi - Byte Array to Gray 8-bit Bitmap (+Performance)
I have a byte array that needs to be displayed on the desktop (or Form). I'm using WinApi for that and not sure how to set all pixels at once. The byte array is in my memory and needs to be displayed ...
0
votes
0answers
148 views
display image on static control win32 with scrollbar
is it possible to make a static control (win32) has SS_BITMAP | WS_VSCROLL | WS_HSCROLL?
All I want to do is just to load a bitmap on a fixed size Static Control and if the image size is bigger than ...
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 ...
2
votes
1answer
378 views
Drawing Image using WinAPI: LoadBitmap works but LoadImage() won't?
I'm pretty new to Windows programming and have been following theForger's Win32 API Programming Tutorial. I've been trying to draw an image inside a window.
Having looked at similar problems, this ...
1
vote
1answer
96 views
delete font created by CreateFont
If I use CreateFont() to create a font (as non-static variable) and use SelectObject to use itin a function, then before exit that function, I have to select the previous object and use DeleteObject ...
0
votes
1answer
59 views
WM_PAINT Bitblitting multiple times?
This is for C++ - win32. Basically I've loaded an image (bmp) into a HBITMAP from a file and bitblitted it to the device context for the main window.
How would I call it again in case I want to ...
0
votes
1answer
125 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
0answers
365 views
How to load simple bitmap file win32
i want to test some simple Win32 that uses bitmap. Here is code i got from Googling.
#include <windows.h>
/* Declare Windows procedure */
LRESULT CALLBACK WindowProcedure (HWND, UINT, ...
1
vote
1answer
434 views
HBITMAP to BITMAP converting
Can't understnand what is wrong with this code:
HBITMAP bm = 0;
BITMAP Bitmap;
bm = (HBITMAP)LoadImage (0, path, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
int error = GetObject( &Bitmap, sizeof( ...
0
votes
1answer
299 views
How do I do bitmap transparency on an existing color?
I'm working with Win32. I found here that if you use:
BitBlt(hdc, 0, 0, 32, 32, hdcMem, 0, 0, SRCAND); // hdc has mask in it
BitBlt(hdc, 0, 0, 32, 32, hdcMem, 0, 0, SRCPAINT);`// hdc has regular ...
1
vote
1answer
396 views
C++ Drawing with BitBlt
I have a function for a game I'm working on:
void DrawMap()
{
BITMAP bm;
PAINTSTRUCT ps;
HBITMAP sprites = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_COLOR_SPRITES));
HDC hdc = BeginPaint(hWnd, &ps);
...
1
vote
2answers
138 views
Win32: Bitmap Instantiation Breaking Function
I'm having this strange issue with one of my bitmaps (it's a spritesheet). My game runs perfectly, but the GameStart function, which initializes bitmaps & sprites, breaks if I uncomment this line ...
2
votes
1answer
377 views
How to set a bitmap as the background of a CHILD window (WIN32)
First of all this is not MFC.
Here is a cropped version of the GUI I have been working on:
As you can see there is a bitmap image above the tab control (which uses the default window's handle), ...
1
vote
0answers
209 views
Using BitBlt to mask background of bitmap C++
I am making a small game with bitmaps representing objects and I am trying to mask the background using a bitmap mask. I looked it up on google and made two bitmaps. One of the ship and one as a mask. ...
1
vote
2answers
545 views
How to draw on the windows desktop using the GDI API? [duplicate]
Possible Duplicate:
Draw on screen with GDI+ (or GDI) similar to Inspect
I'm attempting to write a snake game that has no windows, but freezes the foreground and draws the snake on top of ...
0
votes
1answer
83 views
Convert StdPicture Transparency Colour to White
I am using a CodeJock ImageManager component to hold a variety of images. I want to put one of these images into a FlexGrid Cell.
The Images I have are Png format and have transparent backgrounds so ...
0
votes
1answer
337 views
Making sense of plain bitmap structure BITMAPINFOHEADER
I'm working on scanning application at a low level where I'm not very comfortable already :)
Anyway, I'm trying to make sense out of numbers I'm getting.
Here we go:
Scanning Letter size document ...
1
vote
0answers
186 views
Win32 How do I save a bitmap to a file
I know this question might have been asked alot but I am having problems with it. Basically my program allows for you to paint on the screen using various pens. I have a case statement for save button ...
0
votes
1answer
218 views
HBITMAP/BITMAP to BITMAPINFOHEADER -> over network - > BITMAPINFOHEADER to HBITMAP/BITMAP
I think the title is very much explanatory but here's a bit more detail what I'm trying to do.
Basically say I have a BITMAP loaded in Memory.
I would like to extract the BITMAPINFOHEADER from it and ...
0
votes
1answer
207 views
can not save hdc to a bitmap correctly
I tried to save a memory DC to a bitmap file. But I can not get the right value about size for the following:
infoHeader.biSizeImage
fileHeader.bfSize
fileHeader.bfOffBits
WriteFile(hFile, ...
0
votes
1answer
312 views
Win32 API - GDI : save part of applicative window in memory
I want to move a bitmap like a sprite : when it moves, it restores the previously saved part of the windows before beeing displayed at its new place (with save of the screen behind).
Here is my ...
0
votes
0answers
146 views
Get HDC context of screen minus application window
I want to be able to get the pixels under the application window within a rectangle the size of the application window and and to ReadPixel's from it using an HDC.
Simply put, I want to take a ...
0
votes
1answer
124 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 ...
0
votes
1answer
156 views
What is the most efficient method of orthogonally rotating a device-independent bitmap (DIB) for display in a window?
I'm writing some code which takes a bitmap from an attached webcam, rotates it either 90, 180 or 270 degrees clockwise and displays it in a window.
The bitmap is originally supplied as a device ...
1
vote
1answer
2k views
Win32 Create Bitmap from Device Context To File and/or BLOB
I would like to get the context of my window into a bitmap. I use the window to draw basic lines with touch. The problem that I'm having is my bitmap is black. Which it is probably due to the fact ...
2
votes
1answer
105 views
Getting a BITMAP dirrectly from a already installed windows raster (bitmap) font
i know this seems to be a weird question, and it is! But taking advantage of the already installed fixed-width fonts of windows (ex: Fixedsys) i would save a lot of size (since i want to make the ...
0
votes
0answers
328 views
Loading a 1bpp bitmap from byte array
I have to load a 1bpp bitmap from a byte array to provide it to an external component. The component requires a handle to a bitmap.
I tried to load it to a Bitmap object and provide the result of ...
0
votes
1answer
150 views
Writing to the screen from the screen using BitBlt
I'm trying to copy parts of the screen, modify them, and then copy those parts back to the screen. This is in windows, using C++.
The general structure of my code looks like this:
HDC hdcDesktop = ...
0
votes
2answers
573 views
Compare two bitmap (device context - file)
I need to compare two bitmaps. One bitmap is loaded from a file, the second is a bitmap from a device context. The file bitmap is generated by the same program for test-purpose.
I am programming on ...
0
votes
1answer
539 views
Bitmap rotation in winapi
I have a BitMap (a little sprite) that i have to rotate at a certain angle. I found this code, and i tried to adapt it for my application, but it doesn't seem to work. The sprite doesn't rotate at ...
0
votes
1answer
229 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.
...
3
votes
2answers
843 views
Are the GDI functions BitBlt and StretchBlt hardware accelerated in Win32?
I can't seem to get a definite answer to this via searching. Are the Win32 blitting operations hardware accelerated (GDI, not GDI+). I don't know how these functions interface with the graphics ...
2
votes
3answers
860 views
How to copy Bitmap pixels to other Bitmap preserving alpha transparency in C#?
Could some rewrite the following function to use any optimized mechanism? I'm pretty sure that this is not the way to proceed, copying pixel by pixel.
I have read about AlphaBlend, or BitBlt, but I'm ...
0
votes
0answers
409 views
Rotating a Bitmap Image(including pixels) in C++
Hello all C++ experts,
Here I am, in a dilemma, thinking of how to rotate the whole bitmap image (including pixels) 90 degrees. I've read articles about it, and some say turning around the x and y, ...

