能力值:
( LV2,RANK:10 )
|
-
-
2 楼
LZ要干什么?IMA 据我所知是DOS下的软盘文件~
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
这个IMA文件只是扩展名叫IMA,不是软盘镜像文件
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
IMA是 使用高动态范围图像(HDR)编码来处理摄影图像的文件格式
编码:
maxComponent = max(FloatSource.R,FloatSource.G, FloatSource.B );
fExp = ceil( ln(maxComponent)/ln(2) );
Encoded.R = (unsigned byte) (FloatSource.R / Power(2,fExp)*255);
Encoded.G = (unsigned byte) (FloatSource.G / Power(2,fExp)*255);
Encoded.B = (unsigned byte) (FloatSource.B/ Power(2,fExp)*255);
Encoded.E = (unsigned byte) (fExp + 128);
解码:
unsigned char Encoded[4];
fExp = Encoded.E - 128;
Decoded.R = Encoded.R/255 * power(2,fExp);
Decoded.G = Encoded.G/255 * power(2,fExp);
Decoded.B = Encoded.B/255 * power(2,fExp);
|
能力值:
( LV2,RANK:10 )
|
-
-
5 楼
楼上你写的我没看明白啊,有没有编辑软件?
|
能力值:
( LV3,RANK:20 )
|
-
-
6 楼
生成的是post script file,你用photoshop打开,存为图形文件就ok了。
|
能力值:
( LV2,RANK:10 )
|
-
-
7 楼
我试了,用photoshop把不开这个ima文件,这个文件好像是把gif文件进行了封装
|
能力值:
( LV2,RANK:10 )
|
-
-
8 楼
新手总是在等待“必要的时候有人一句提醒会让自己有豁然开朗的感觉。。。。”
|
|
|