Connecting Tech Pros Worldwide Forums | Help | Site Map

Image getting skewed

apoorv
Guest
 
Posts: n/a
#1: Jul 23 '05
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


Ivan Vecerina
Guest
 
Posts: n/a
#2: Jul 23 '05

re: Image getting skewed


"apoorv" <araghuvanshi@nospam.quark.com> wrote in message
news:93fd5a20e8b0cc85250b6e2f65258a76@localhost.ta lkaboutprogramming.com...[color=blue]
> 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.[/color]
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 ?

--
http://ivan.vecerina.com/contact/?subject=NG_POST <- email contact form


Closed Thread