A thin whiteline is been added when resize the image
问题 When we resizing the image (after downloading and before storing that in document directory), by the following code: -(UIImage *)resizeImage:(UIImage *)image withSize:(CGSize)newSize { float actualHeight = image.size.height; float actualWidth = image.size.width; float imgRatio = actualWidth/actualHeight; float maxRatio = newSize.width/newSize.height; if(imgRatio!=maxRatio){ if(imgRatio < maxRatio){ imgRatio = newSize.width / actualHeight; actualWidth = imgRatio * actualWidth; actualHeight =