Image getting skewed

A

apoorv

Hi guys,
I am writing a imaging aplication on VC++.I have to display images and
apply effects onto it.Images could be of any type like jpg,gif,bmp,psd...M
uding createDibSection API.it requires BITMAPINFO struc as one of its
parameters.Its working well(Images are successfully displayed) but my
problem is that in certain images(of any type)they are skewed and becomes
B/W(means Data corruption).U can see my code of populating BITMAPINFO and
CreateDibSection...Can any body help me in solving the annoying probs.
[Note:If I am changing the dimension of image by few pixels using
photoshop it displays well]

BITMAPINFO bmi;

bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
bmi.bmiHeader.biBitCount = 24; bmi.bmiHeader.biWidth
= swidth;//Image width
bmi.bmiHeader.biHeight = -sheight;//Image Height //
neg for top-to-bottom
bmi.bmiHeader.biPlanes = 1;
bmi.bmiHeader.biCompression = BI_RGB; // uncompressed
bmi.bmiHeader.biSizeImage = 0; // unused for BI_RGB
bmi.bmiHeader.biXPelsPerMeter = 0;
bmi.bmiHeader.biYPelsPerMeter = 0;
bmi.bmiHeader.biClrUsed = 0;
bmi.bmiHeader.biClrImportant = 0;
bmi.bmiColors[0].rgbBlue = 0;
bmi.bmiColors[0].rgbRed = 0;
bmi.bmiColors[0].rgbGreen = 0;
bmi.bmiColors[0].rgbReserved = 0;


hBmp = CreateDIBSection( hdc_
, &bmi
, DIB_RGB_COLORS
, &imageBuff //pointer to created buf
, NULL
, 0);

dcMem = ::CreateCompatibleDC(hdc_);//creates a memory compatible
device context (DC)passing exixting DC
(HBITMAP) ::SelectObject(dcMem, hBmp); //selects handle of image to
Device
//context dcMem
 
I

Ivan Vecerina

apoorv said:
I am writing a imaging aplication on VC++.I have to display images and
apply effects onto it.Images could be of any type like jpg,gif,bmp,psd...M
uding createDibSection API.it requires BITMAPINFO struc as one of its
parameters.Its working well(Images are successfully displayed) but my
problem is that in certain images(of any type)they are skewed and becomes
B/W(means Data corruption).U can see my code of populating BITMAPINFO and
CreateDibSection...Can any body help me in solving the annoying probs.
Most likely this is related to a padding issue: on many systems, the
data for each row of pixels needs to be aligned to an address that
is a multiple of 2 (or 4). If data for a pixel row has an odd size,
padding bytes need to be inserted.

But, ahem, what was your C++ question ?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top