Hi I'm writing an application to display large tiff images. All of the images have the PixelFormat.Format1bppIndexed so the FILE SIZE of them will not be so big however The DIMENTIONS are very large. for example the file size of an image with dimensions 29350 x 7172, is only 6.7 MB. The Image.FromFile method loads the above image in the memory quickly. Now I have the image loaded in memory, how can I display it fast? Binding the image object to a PictureBox causes the "Out of memory" error. I tried drawing portions of image using "Clone" method in a rectangular region of the form and scroll bars, inside the OnPaint event. but it is too slow :( Can any one direct me to make it works fast? Thanx
N
NaserAbiat
@NaserAbiat
Posts
-
Quickly display large images -
Opening large tiff filesI want to open large tiff images (ex 29350 x 7172) just for viewing not editing. I tried Image.FromFile but it works very slow. Also I don't want to use a viewer activex. Please help
-
Inter-Application CommunicationHow can I change the text of a textbox in a form of a .NET application, By clicking a button in a form of an other .NET stand alone application? I know that DDE is no longer supported in the .NET framework. I may use XML to do that but I don't know how? please help me