我想知道有没有什么能够得到gif的每一帧呢
我使用一个数组array<Image^>^images = gcnew array<Image^> (count);//count是gif的帧数。
我想通过遍历for(int i=0;i<count;i++)
使得images[i]得到gif的个帧,
Image^ gifimage里面就存了一个gif的图片
有没有什么办法可以实现了,平台是CLR,麻烦你了
------解决方案--------------------------------------------------------
Use GDI+ The Image::SelectActiveFrame method selects the frame in this Image object specified by a dimension and an index.
Sample - Strip Images From Animated Gif