BMP problem solves : BMP-Images with dimension multiple of 4 presented problems

This commit is contained in:
Yannick Verschueren 2004-03-15 10:42:29 +00:00
parent 1f7520c88b
commit e5106dd836
1 changed files with 4 additions and 1 deletions

View File

@ -203,7 +203,10 @@ int bmptoimage(char *filename, j2k_image_t * img, int subsampling_dx, int subsam
W = Info_h.biWidth;
H = Info_h.biHeight;
PAD = 4 - (3 * W) % 4;
// PAD = 4 - (3 * W) % 4;
// PAD = (PAD == 4) ? 0 : PAD;
PAD = (3 * W) % 4 ? 4 - (3 * W) % 4 : 0;
RGB = (unsigned char *) malloc((3 * W + PAD) * H * sizeof(unsigned char));