I am loading j2k images(by converting into
sample code of loading j2k image in c# is :
Thanks in advance.
Bitmap
) using MagickImage.dll
in c#.sample code of loading j2k image in c# is :
MagickImage image = new MagickImage(fileName);
Bitmap bitmap= image.ToBitmap();
pictureBox.Image=bitmap;
It is loading properly but taking a long time for e.g. 10-12 seconds per image. Can anybody tell how to reduce the time while converting image to Bitmap?Thanks in advance.