Tagged Questions
The bitblt tag has no wiki summary.
4
votes
1answer
264 views
BitBlt performance with Aero enabled
I'd like to get more performance out of BitBlt for capturing the screen. When Aero remains enabled, capturing only a 400x400 pixel area of the screen reduces capture time from an average of 50ms (full ...
4
votes
2answers
3k views
How to correctly screencapture a specific window on Aero/DWM
Background info:
I have this MFC application I coded and been using for a long time that pretty much automatically saves screenshots to the hard disk when the user hits the Print Screen/Alt+Print ...
3
votes
2answers
487 views
Copy Graphics conent to bitmap
I try to copy the contents of a graphics object to a bitmap. I'm using this code
public static class GraphicsBitmapConverter
{
[DllImport("gdi32.dll", SetLastError = true)]
[return: ...
2
votes
1answer
41 views
Can I use ROPs in Canvas? (I care for performance reasons only)
So... In the good old days of making games, when you were drawing sprites to the screen, you'd use ROPs to draw only the "non-transparent" part of your sprite. (Yes, I haven't done any game coding in ...
2
votes
1answer
747 views
Is it possible to BitBlt directly from a GDI+ bitmap?
Is it possible to use BitBlt to copy directly out of a GDI+ bitmap without using GetHBitmap?
GetHBitmap is slow because it makes a new copy of the whole image, in addition to and slower than the ...
2
votes
2answers
513 views
BitBlt in Qt4?
What is the recommended method of copying one QImage into another at a particular position in Qt4?
QImage::bitblt was removed in Qt4.
Does the QImage now need to be converted to a PixMap and back?
2
votes
2answers
407 views
How to clean up after myself when drawing directly to the screen
I'm drawing directly to the screen using BitBlt and GetDC(IntPtr.Zero). Is there some way to call Refresh or Invalidate on the whole screen when I'm done, so that I don't leave big chunks of paint ...
2
votes
1answer
1k views
BitBlt code not working
I'm trying to use this code to draw a Bitmap directly onto a PictureBox:
Bitmap bmp = (Bitmap)Bitmap.FromFile(@"C:\Users\Ken\Desktop\Load2.bmp");
Graphics grDest = ...
2
votes
3answers
2k views
C# Bitblit from Bitmap to control (Compact Framework)
I used once BitBlt to save a screenshot to an image file (.Net Compact Framework V3.5, Windows Mobile 2003 and later). Worked fine. Now I want to draw a bitmap to a form. I could use ...
2
votes
2answers
795 views
BitBlt() equivalent in Objective-C/Cocoa
I made a scrolling tile 2D video game in visual basic a few years back. I am translating it to Cocoa for the Mac. Is there a framework that would allow me to use BitBlt? Or is there an equivalent to ...
1
vote
1answer
76 views
Capturing image in client window win32 c++
This code is attempting to capture the image painted on the window in a box of up to 100x100 around the cursor. BitBlt is not returning 0 in either location here, and I'm pretty sure the issue is ...
1
vote
0answers
251 views
How to speed up BitBlt to capture screen with aero?
I use following code to capture the screen with GDI functions:
// Prologue:
int iScreenWidth = GetSystemMetrics(SM_CXSCREEN);
int iScreenHeight = GetSystemMetrics(SM_CYSCREEN);
HDC hScreenDC = ...
1
vote
2answers
141 views
Why is the screenshot not drawn onto my window using SelectObject and BitBlt functions?
I am trying to get a 500x500 screenshot from the 0x0 (top-left) position of screen and put it in a window.
Here is my code (hwnd is my Window Handle):
HDC appDc = GetDC(hwnd);
HDC dc = GetDC(NULL);
...
1
vote
0answers
241 views
How to get bitblt to copy child controls without painting the child controls to the screen?
Here is the short of my question: in a custom control, is there a way to get a parent paint/bitblt its children controls to a background image, but not have the children controls actually paint on the ...
1
vote
3answers
425 views
Crop function BitBlt(…)
I want to create a crop function in an existing engine. This is what I already have:
bool Bitmap::Crop(RECT cropArea)
{
BITMAP bm;
GetObject(m_Handle, sizeof(bm), &bm);
HDC hSrc = ...
1
vote
1answer
754 views
BitBlt + UpdateLayeredWindow and CreateDIBSection in 16-bit desktop color depth
I have an application with transparent background in client area which is drawn black because the window is not layered. In each of it's WM_PAINT messages I am doing a BitBlt to a memory-DC, after ...
1
vote
0answers
272 views
SRCCOPY removes transparancy from BITBLITTED IMAGE
BitBlt(meteor.main, 0, 0, meteor.img_width, meteor.img_height, meteor.image, meteor.mask_x, meteor.mask_y, SRCAND);
BitBlt(meteor.main, 0, 0, meteor.img_width, meteor.img_height, meteor.image, ...
1
vote
1answer
686 views
Win32 window capture with BitBlt not displaying border
I have written some c++ code to capture a window to a .bmp file.
BITMAPFILEHEADER get_bitmap_file_header(int width, int height)
{
BITMAPFILEHEADER hdr;
memset(&hdr, 0, ...
1
vote
0answers
643 views
Custom Controls via BitBlt / Alphablend Functions — Help I'm confused
Platform: Windows Mobile 6 Classic / .NET CF 3.5
Problem: Custom Controls, that display alphablended images do not behave well with images on Parent control. Also, hidding and show such controls ...
1
vote
2answers
278 views
Cursor disappears on bitblt
I have a windows application that scrapes pixels from the screen for recording (in the form of a video) to a custom screen-sharing format. The problem is that on machines using a software cursor, ...
1
vote
2answers
814 views
BitBlt Performance
I have a function that splits a multipage tiff into single pages and it uses the windows BitBlt function. In terms of performance, would the video card have any influence in doing the split? Would it ...
0
votes
0answers
17 views
How to use SetWindowRgn or BitBlt to make elliptical controls in MFC
I sub-classed the CButton class to create my own owner-drawn CButton that can display bitmaps for different Button states.
In the ON_DRAW, I'm using BitBlt() to copy the bitmap to the ...
0
votes
1answer
68 views
Win32 Double Buffering drawing black background
Doing a project in win32 in c++, attempting to double buffer the image being drawn, but I'm getting a black screen with the correct bitmaps drawn over it. This is also causing my WM_MOUSEMOVE ...
0
votes
1answer
57 views
Getting individual pixels of another window with BitBlt
This is what I am currently doing:
get window DC via GetWindowDC
create a compatible DC with CreateCompatibleDC
call GetPixel on my compatible DC
Unfortunately, all of my GetPixel calls are ...
0
votes
0answers
69 views
GetDIBits, BitBlt on Wineskin
I am trying to run a Windows app on Mac using Wineskin.
The app uses the functions GetDIBits and BitBlt for the purpose of capturing a snapshot of the screen.
The problem is that these functions seem ...
0
votes
0answers
56 views
BitBlting with Windows Aero
For months now, I have been trying to solve a problem regarding rendering images properly onto Aero glass. From what I have gathered so far, to do this you need to render the graphics object as a ...
0
votes
1answer
116 views
win32 bitmaps flashing when more than one sprite on screen
I've been using the win32 api to make a game with sprites. For some reason when I have more than one sprite on screen they flash occasionally as if they are disappearing and returning. When there is ...
0
votes
0answers
157 views
Alternatives to BitBlt() and SetDIBits() for multithreaded tiled rasterizer?
I'm writing a software rasterizer operates similarly to that of the PowerVR MBX architecture, however I'm troubled by the fact that BitBlt and SetDIBits can only successfully be executed on one thread ...
0
votes
2answers
198 views
Control to draw in a window gdi
I have used Visual Basic 6 in the past (LOONG ago), and it had a control called PictureBox where you could just draw stuff to, get a device context if you wanted, etc. I'm now trying to find out how ...
0
votes
1answer
111 views
Why the Bitblt cannot work
> case WM_PAINT:
{
> hdc = BeginPaint(hWnd, &ps);
> // TODO: Add any drawing code here...
> RECT rt;
> ...
0
votes
0answers
243 views
Problem with BitBtl and DWM (Windows Aero)
I'm developing an application that has to take screenshots of a fullscreen game. The problem is that I've tried many methods but any of them are able to take the screenshot when the game is in ...
0
votes
1answer
359 views
Is it possible to BitBlt directly on to a GDI+ bitmap?
I am trying to BitBlt from an HBITMAP to a GDI+ bitmap. I tried this, but nothing happens:
Bitmap Buffer = New Bitmap(608, 392)
Graphics BufferGraphics = Graphics.FromImage(Buffer);
IntPtr hBufferDC ...
0
votes
1answer
411 views
Using BitBlt to capture desktop pixel colors
Right now I'm using GetPixel() to retrieve about 64 pixels from the desktop in order to obtain their color. I read about GetPixel() being slow but didn't think it would matter for a few pixels but ...
0
votes
0answers
95 views
bitblt is not working properly when display mode is 16 bit in windows
I want to copy a image on to another image where the target image contains the source in the center and rest background should be white.
Here is my code
hBitmap = (HBITMAP)LoadImage(NULL, ...
0
votes
1answer
339 views
BitBlt function produces empty bitmap when compiled for x86 in .NET 2.0 VB app
I have a BitBlt wrapper function in my VB project. It works just fine when compiled as Any CPU, but when I aim it at x86 it creates an empty bitmap. I must use x86 as other parts of the app require ...
0
votes
1answer
220 views
WinAPI/GDI: why snapshot of large windows includes taskbar?
I am using GDI+ to take window snapshot, the code is:
CComBSTR bstrfname (fname);
HDC hdc = CreateCompatibleDC (hDC);
HBITMAP hbmp = CreateCompatibleBitmap (hDC, CFG_WIDTH, CFG_HEIGHT);
HBITMAP ...
0
votes
1answer
941 views
How to increase performance over GDI's DrawImage(Unscaled)?
In my user control's paint handler I iterate over a collection of predefined Bitmap objects and draw them to the client area thusly:
C# version:
private void Control_Paint(object sender, ...
0
votes
1answer
411 views
Copy Small Bitmaps on to Large Bitmap with Transparency Blend: What is faster than graphics.DrawImage(smallBitmap, x , y)?
I have identified this call as a bottleneck in a high pressure function.
graphics.DrawImage(smallBitmap, x , y);
Is there a faster way to blend small semi transparent bitmaps into a larger semi ...
0
votes
1answer
451 views
2D Engine scrolling on OpenGL via hardware?
I'm using OpenGL as the bottom end for a 2D tiling engine.
When everything is 2D, it is simple to optimize certain issues.
For example, scrolling. If I know a certain section of the screen
needs to ...
0
votes
4answers
300 views
How to use Win32's BitBlt using Ruby?
Does anyone know how to use Win32's BitBlt() using Ruby? It seems like you need to use a destination DC (device context) and how can Ruby handle that? I use GetPixel() and it is really slow even to ...
0
votes
2answers
2k views
Converting from HBITMAP to Jpeg or Png in C++
Does anyone know how I can use an HBITMAP variable to write a png or jpeg file?
I first looked into doing this with GDI+ but it gives me errors telling me min/max haven't been defined (defining them ...
0
votes
4answers
600 views
Bitblt blackness
I am running this following code,
HDC hdc;
HDC hdcMem;
HBITMAP bitmap;
RECT c;
GetClientRect(viewHandle, &c);
// instead of BeginPaint use GetDC or GetWindowDC
hdc = GetDC(viewHandle);
hdcMem = ...