I have a picture which consist of many picture, how to read the small picture one by one???
Printable View
I have a picture which consist of many picture, how to read the small picture one by one???
Are you saying that you have multiple image files and you want to create a single large image containing them all?
NoNo
Sorry for my poor english (I am chinese)...
Let me explain again
Do you play LF2 before?
A jpeg file which contain many picture (every picture is in one rectangle)
How can I read the picture one by one?
I'm not sure if there's another way but you can create an Image object from the entire image, then create a new Bitmap object of the dimensions of a sub-image, then create a Graphics object from the new Bitmap, then use the appropriate overload of Graphics.DrawImage to draw the desired portion of the original Image onto the new Bitmap.
Hi,Quote:
Originally Posted by s021126
I think you can use a Thumbnail for that.
So, here's a link where you can find some information how it works.
http://www.codeproject.com/dotnet/multiImageViewer.asp
You can also try the Image.GetThumbnailImage method.
http://msdn2.microsoft.com/en-us/lib...nailimage.aspx
Wkr,
sparrow1