Tagged Questions
The dib tag has no wiki summary.
3
votes
1answer
83 views
DIB to Tbitmap code manipulation to adapt PNG images?
I use this code to convert DIB to TBitmap, so how can i manipulate this code to be suitable to a PNG image (preseving its transparency)?
I tired to set the Transparent property to true but it seems ...
2
votes
1answer
133 views
How to convert DIB to TPNGObject?
I have a DIB handle. How can I convert it to TPNGObject with preserving its transparency?
EDIT :
I use method 2 in this solution Here
but the bitmap resulted is not transparent even if i set its ...
1
vote
1answer
54 views
What are the differences between a Windows bitmap and DIBSection?
I'm loading a DIBSection from a file with the following:
HBITMAP bmpIn = (HBITMAP) LoadImage(NULL, _T("c:\\Temp\\Temp.bmp"), IMAGE_BITMAP, 0, 0, LR_CREATEDIBSECTION | LR_LOADFROMFILE);
Empirically ...
1
vote
1answer
306 views
Fastest method for blitting from a pixel buffer into a device context
Good evening,
I have several 32-bit images in memory buffers that I wish to "blit" to a device context, quickly. Speed is an issue here because the buffer will be manipulated constantly and need to ...
0
votes
0answers
24 views
How to get a packed dib from IExtractImage
I need bitmap data of a document preview through the Windows Shell, but I need packed dib data. The only way I know to do this is by constructing one, but this is a beast of a task for someone who's ...
0
votes
1answer
64 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 ...
0
votes
2answers
141 views
How much memory should be allocated for the DIB data received from HBITMAP using GetDIBits function?
How much memory should be allocated for the DIB data received from HBITMAP using GetDIBits function?
The GetDIBits function is described in MSDN as follow:
int GetDIBits(
__in HDC hdc,
__in ...
0
votes
1answer
117 views
CreateDIBitmap creates Black&White image
For someone who knows CreateDIBitmap troubleshootings
When I create it, passing all the parameters hopefully correct, I create it with passing data array (bits array).
This array is taken from the ...
0
votes
0answers
180 views
GetDIBits doesn't work
This is my last recourse. I know there are lots of similar questions related to GetDIBits and I have read through them all for last seven days. If I am asked about what are all such things as bitmap, ...
0
votes
1answer
148 views
Whats the correct way to use a color lookup table with a Win32 DIB?
I'm writing some code to perform window levelling on a 16 bit DICOM image (which is loaded in memory as a 16 bit DIB). My window levelling code is complete and works by generating a lookup table to ...
0
votes
3answers
713 views
CreateDIBSection leaving 'Not enough storage' error, but seems to still work anyway
Whenever my app tries to create a DIB section, either by calling CreateDIBSection(), or by calling LoadImage() with the LR_CREATEDIBSECTION flag, it seems to return successfully. The HBITMAP it ...
0
votes
2answers
989 views
Delphi DIB with DIB Header into TBitmap
I'm kindly asking you to help me with this problem:
There's a byte array (data: PByte) containing DIB data AND DIBHeader:
TDibHeader = record
size: Cardinal;
width: Integer;
height: ...
0
votes
0answers
369 views
Capture screen shot with mouse cursor
I have used the following code to get screen shot on Windows.
hdcMem = CreateCompatibleDC (hdc) ;
int cx = GetDeviceCaps (hdc, HORZRES);
int cy = GetDeviceCaps (hdc, VERTRES);
HBITMAP ...
0
votes
2answers
481 views
which is the fasted method to draw a large DIB onto Screen in windows
I am programming in windows c++.
I want to know which is the fasted method to draw a DIB onto Screen.
The image maybe stretched.
Faster than StretchDIBits, Faster than SetDIBitsToDevice.
Faster than ...
0
votes
2answers
238 views
How to get a DIB implemented in a C++/COM library into a .NET client using that COM object
We have a COM object implemented with C++/ATL that includes a method which will return a DIB. We are also writing a .NET application that will use this COM object. Since we are writing both, we have ...
0
votes
1answer
629 views
JavaScript, inputstream and DIB?
Is there any useful way to load DIB into inputstream and get a handle to it and all that in JavaScript (js) ?
-1
votes
3answers
157 views
C++: Quick code to resize DIB image and maintain good img quality
There is many algorithms to do image resizing - lancorz, bicubic, bilinear, e.g. But most of them are pretty complex and therefore consume too much CPU.
What I need is fast relatively simple C++ code ...