Hi,
I've added GridViewImageColumn and am displaying the image from local path using
Bitmap.FromFile(this.Value.ToString()); as was specified in one of your links.That is working fine.
The issue here is that the images can be of varying sizes, hence the row height is not uniform. We need to either generate thumbnails for these images and then display in the column,
Is there any way to specify the height and width for the Image so that it would resize accordingly without getting truncated.
I've added GridViewImageColumn and am displaying the image from local path using
Bitmap.FromFile(this.Value.ToString()); as was specified in one of your links.That is working fine.
The issue here is that the images can be of varying sizes, hence the row height is not uniform. We need to either generate thumbnails for these images and then display in the column,
Is there any way to specify the height and width for the Image so that it would resize accordingly without getting truncated.