While doing image processing with UI images in Objective-C, i am having an unusual image-skewed problem for some images. The images are getting distorted badly. This problem occurs in Open-CV when i take width instead of width-step. I know that this problem is created for images whose width is not a multiple of 4 (improper row allignment), my question is how do i fix the issue in Objective-C ??
My sample code:-
unsigned char *output_image1 = (unsigned char *)malloc(height2*width2*4);
int i,j;
for(i=0;i<height2;i++){
for(j=0;j<4*width2;j=j+4){
output_image[i*4*width2+4*(j/4)] = 46;
output_image[i*4*width2+4*(j/4)+1] = 100;
output_image[i*4*width2+4*(j/4)+2] = 150;
output_image[i*4*width2+4*(j/4)+3] = 255;
}
}