PPM和PSD图像格式

<p><strong>PPM灰度文件:</strong></em> <p>文件头由3行文本组成,可由fgets读出</p> <p>1)第一行为“P2",表示文件类型</p> <p>2)第二行为图像的宽度和高度</p> <p>3)第三行为最大的象素值255<br />接下来是图像数据块。按行顺序存储。每个象素占4个字节,灰度通道为4字节ASCII码表示的整数,高字节在前。左上角为坐标原点。</p></p> <p><em><strong>16位PPM文件:(至少适用于读取由DCRAW生成的PPM文件)</strong></em> <p>文件头由3行文本组成,可由fgets读出</p> <p>1)第一行为“P6",表示文件类型</p> <p>2)第二行为图像的宽度和高度</p> <p>3)第三行为最大的象素值</p> <p>接下来是图像数据块。按行顺序存储。每个象素占6个字节,依次为红绿蓝通道,每个通道为2字节整数,高字节在前。</p> <p><em><strong>PPM彩色文件:</strong></em></p> <p>文件头由3行文本组成,可由fgets读出</p> <p>1)第一行为“P3",表示文件类型</p> <p>2)第二行为图像的宽度和高度</p> <p>3)第三行为最大的象素值255</p> <p>接下来是图像数据块。按行顺序存储。每个象素占12个字节,依次为红绿蓝通道,每个通道为4字节ASCII码表示的整数,高字节在前。左上角为坐标原点。</p> <p>-------------------------------------------------------------------------------------------------------------<br /><a href="http://netpbm.sourceforge.net/doc/ppm.html">http://netpbm.sourceforge....</a></p></p> <h1>ppm</h1> <p>Updated: 03 October 2003</p> <p><a href="http://netpbm.sourceforge.net/doc/ppm.html#index">Table Of Contents</a></p> <p><a name="lbAB"> </a><br /> <h2>NAME</h2> <p>PPM - Netpbm color image format<br /><a name="lbAC"> </a></p> <h2>DESCRIPTION</h2> <p>This program is part of <a href="http://netpbm.sourceforge.net/doc/index.html">Netpbm</a>.</p></p> <p>The PPM format is a lowest common denominator color image file<br />format.</p></p> <p>It should be noted that this format is egregiously inefficient.<br />It is highly redundant, while containing a lot of information that the<br />human eye can't even discern. Furthermore, the format allows very<br />little information about the image besides basic color, which means<br />you may have to couple a file in this format with other independent<br />information to get any decent use out of it. However, it is very easy<br />to write and analyze programs to process this format, and that is the<br />point.</p></p> <p>It should also be noted that files often conform to this format in<br />every respect except the precise semantics of the sample values.<br />These files are useful because of the way PPM is used as an<br />intermediary format. They are informally called PPM files, but to be<br />absolutely precise, you should indicate the variation from true PPM.<br />For example, "PPM using the red, green, and blue colors that the<br />scanner in question uses."</p></p> <p>The name "PPM" is an acronym derived from "Portable Pixel Map."<br />Images in this format (or a precursor of it) were once also called<br />"portable pixmaps."</p></p> <p>The format definition is as follows. You can use the <a href="http://netpbm.sourceforge.net/doc/libnetpbm.html">libnetpbm</a> C subroutine library to read and<br />interpret the format conveniently and accurately.</p></p> <p>A PPM file consists of a sequence of one or more PPM images. There are<br />no data, delimiters, or padding before, after, or between images.</p></p> <p>Each PPM image consists of the following:</p></p> <ol> <li>A "magic number" for identifying the file type.<br />A ppm image's magic number is the two characters "P6".<br /><a name="ixAAC"></a></li> <li>Whitespace (blanks, TABs, CRs, LFs).</li> <li>A width, formatted as ASCII characters in decimal.</li> <li>Whitespace.</li> <li>A height, again in ASCII decimal.</li> <li>Whitespace.</li> <li>The maximum color value (Maxval), again in ASCII decimal. Must be less<br />than 65536 and more than zero.</li> <li>Newline or other single whitespace character. </li> <li>A raster of Height rows, in order from top to bottom. Each row<br />consists of Width pixels, in order from left to right. Each pixel is<br />a triplet of red, green, and blue samples, in that order. Each sample<br />is represented in pure binary by either 1 or 2 bytes. If the Maxval<br />is less than 256, it is 1 byte. Otherwise, it is 2 bytes. The most<br />significant byte is first. <p>A row of an image is horizontal. A column is vertical. The pixels<br />in the image are square and contiguous.</p></p> </li> <li>In the raster, the sample values are "nonlinear." They are<br />proportional to the intensity of the CIE Rec. 709 red, green, and blue<br />in the pixel, adjusted by the CIE Rec. 709 gamma transfer function.<br />(That transfer function specifies a gamma number of 2.2 and has a<br />linear section for small intensities). A value of Maxval for all<br />three samples represents CIE D65 white and the most intense color in<br />the color universe of which the image is part (the color universe is<br />all the colors in all images to which this image might be compared).<br />CIE Rec. 709 is also known as ITU-R BT.709. <p>Note that another popular color space is the newer sRGB. A common<br />variation on PPM is to subsitute this color space for the one specified.</p> </li> <li>Note that a common variation on the PPM format is to have the sample<br />values be "linear," i.e. as specified above except without the gamma<br />adjustment.<br /><b>pnmgamma</b> <p>takes such a PPM variant as input and produces a true PPM as output.</p> </li> <li>Characters from a "#" to the next end-of-line, before<br />the maxval line, are comments and are ignored. </li> </ol> <p> <p>Note that you can use<br /><b>pnmdepth</b></p> <p>to convert between a the format with 1 byte per sample and the one<br />with 2 bytes per sample.</p> <p>There is actually another version of the PPM format that is fairly<br />rare: "plain" PPM format. The format above, which generally<br />considered the normal one, is known as the "raw" PPM format.<br />See <b><a href="http://netpbm.sourceforge.net/doc/pbm.html">pbm</a></b></p> <p>for some commentary on how plain and raw formats relate to one another.</p> <p>The difference in the plain format is:</p> <dl> <dt>-</dt> <dd>There is exactly one image in a file.<br /></dd> <dt>-</dt> <dd>The magic number is P3 instead of P6.<br /></dd> <dt>-</dt> <dd>Each sample in the raster is represented as an ASCII decimal number<br />(of arbitrary size).<br /></dd> <dt>-</dt> <dd>Each sample in the raster has white space before and after it. There must<br />be at least one character of white space between any two samples, but there<br />is no maximum. There is no particular separation of one pixel from another --<br />just the required separation between the blue sample of one pixel from the<br />red sample of the next pixel.<br /></dd> <dt>-</dt> <dd>No line should be longer than 70 characters.<br /></dd> </dl> <p> <p>Here is an example of a small pixmap in this format:</p> <pre>P3<br /># feep.ppm<br />4 4<br />15<br /> 0 0 0 0 0 0 0 0 0 15 0 15<br /> 0 0 0 0 15 7 0 0 0 0 0 0<br /> 0 0 0 0 0 0 0 15 7 0 0 0<br />15 0 15 0 0 0 0 0 0 0 0 0<br /></pre><p>Programs that read this format should be as lenient as possible,<br />accepting anything that looks remotely like a pixmap.</p> <p><a name="lbAD"> </a></p> <h2>COMPATIBILITY</h2> <p>Before April 2000, a raw format PPM file could not have a maxval greater<br />than 255. Hence, it could not have more than one byte per sample. Old<br />programs may depend on this.</p></p> <p>Before July 2000, there could be at most one image in a PPM file. As<br />a result, most tools to process PPM files ignore (and don't read) any<br />data after the first image.</p> <p><a name="lbAE"> </a></p> <h2>SEE ALSO</h2> <p><a href="http://netpbm.sourceforge.net/doc/pnm.html">pnm</a>,<br /><a href="http://netpbm.sourceforge.net/doc/pgm.html">pgm</a>,<br /><a href="http://netpbm.sourceforge.net/doc/pbm.html">pbm</a>,<br /><a href="http://netpbm.sourceforge.net/doc/pam.html">pam</a>,<br /><a href="http://netpbm.sourceforge.net/doc/directory.html">programs that process PPM</a></p> <p><a name="lbAF"> </a><br /> <h2>AUTHOR</h2> <p>Copyright (C) 1989, 1991 by Jef Poskanzer.</p> <p><hr /><br /><a name="index"> </a><br /> <h2>Table Of Contents</h2> <p> <ul> <li><a href="http://netpbm.sourceforge.net/doc/ppm.html#lbAB">NAME</a></li> <li><a href="http://netpbm.sourceforge.net/doc/ppm.html#lbAC">DESCRIPTION</a></li> <li><a href="http://netpbm.sourceforge.net/doc/ppm.html#lbAD">COMPATIBILITY</a></li> <li><a href="http://netpbm.sourceforge.net/doc/ppm.html#lbAE">SEE ALSO</a></li> <li><a href="http://netpbm.sourceforge.net/doc/ppm.html#lbAF">AUTHOR</a></li> </ul> <pre>-----------------------------------------------------------------------------------------------</pre><p><strong><em></em></strong> <p><strong><em>PSD文件:(用于生成至少与PHOTOSHOP5.5兼容的PSD文件)</em></strong></p> <p>整型量高字节在前</p> <p>文件头为40个字节 : </p> <table width="379" border="0"> <tbody> <tr> <th width="68" scope="col"> <div align="left">位置</div> </th> <th width="127" scope="col"> <div align="left">数据</div> </th> <th width="170" scope="col"> <div align="left">含义</div> </th> </tr> <tr> <td> <div align="left">01-04</div> </td> <td> <div align="left">“8BPS”</div> </td> <td> <div align="left">文件类型标识</div> </td> </tr> <tr> <td> <div align="left">05-12</div> </td> <td> <div align="left">0,1,0,0,0,0,0,0</div> </td> <td> <div align="left">版本</div> </td> </tr> <tr> <td> <div align="left">13-14</div> </td> <td> <div align="left">uint16=3</div> </td> <td> <div align="left">通道数</div> </td> </tr> <tr> <td> <div align="left">15-18</div> </td> <td> <div align="left">uint32 </div> </td> <td> <div align="left">高度</div> </td> </tr> <tr> <td> <div align="left">19-22</div> </td> <td> <div align="left">uint32</div> </td> <td> <div align="left">宽度</div> </td> </tr> <tr> <td> <div align="left">23-24</div> </td> <td> <div align="left">uint16=16</div> </td> <td> <div align="left">16-bit color</div> </td> </tr> <tr> <td> <div align="left">25-26</div> </td> <td> <div align="left">uint16=3</div> </td> <td> <div align="left">模式(1=gray, 3=rgb)</div> </td> </tr> <tr> <td> <div align="left">27-30</div> </td> <td> <div align="left">0,0,0,0,</div> </td> <td> <div align="left">color mode data </div> </td> </tr> <tr> <td> <div align="left">31-34</div> </td> <td> <div align="left">0,0,0,0</div> </td> <td> <div align="left">mage resources</div> </td> </tr> <tr> <td> <div align="left">35-38</div> </td> <td> <div align="left">0,0,0,0</div> </td> <td> <div align="left">layer/mask info</div> </td> </tr> <tr> <td> <div align="left">39-40</div> </td> <td> <div align="left">uint16=0</div> </td> <td> <div align="left">无压缩</div> </td> </tr> </tbody> </table> <p>接下来是图像数据块。按行顺序存储。每个象素占6个字节,依次为红绿蓝通道,每个通道为2字节整数,高字节在前。</p> <p /> <p>------------------------------------------------------------------------------------------------------------</p> <p><!--StartFragment --> <a href="http://www.windstudio.net/html/200403/20040321042235.htm"><a href="http://www.windstudio.net/html/200403/20040321042235.htm">http://www.windstudio.net/...</a></a></p> <p>图形图像文件大致上可以分为两大类:一类为位图文件;另一类称为描绘类、矢量类或面向对象图形图像文件。前者以点阵形式描述图形图像,后者是以数学方法描述的一种由几何元素组成的图形图像。一般说来,后者对图像的表达细致、真实,缩放后图形图像的分辨率不变,在专业级的图形图像处理中应用较多。</p> <p>*.bmp (Bitmap)<br />*.bmp是Windows中的标准图像文件格式,已成为PC机Windows系统中事实上的工业标准,有压缩和不压缩两种形式。它以独立于设备的方法描述位图,可用非压缩格式存储图像数据,解码速度快,支持多种图像的存储,常见的各种PC图形图像软件都能对其进行处理。在PhotoShop中,最多可以使用16M的色彩渲染bmp图像。</p> <p>*.dib (Device Independent Bitmap)<br />*.dib是一种类似于*.bmp的图形文件格式,描述图像的能力与*.bmp基本相同,并且能够运行在多种硬件平台上,只是文件较大。常见的各种PC图形图像软件都能够对其进行处理。</p> <p>*.gif (Graphics Interchange Format)<br />*.gif是在各种平台的各种图形处理软件上均能够处理的、经过压缩的一种图形文件格式。它是可在Macintosh、Amiga、Atati、IBM 机器间进行移植的一种标准位图格式。该格式由Compuserver公司创建,存储色彩最高只能达到256种。在颜色深度和图像大小上,*.gif类似于 *.pcx;在结构上,*.gif类似于*.tiff。正因为它是经过压缩的图像文件格式,所以大多用在网络传输上,速度要比传输其他图像文件格式快得多。它的最大缺点是最多只能处理256种色彩,故不能用于存储真彩色的图像文件,但其GIF89a格式能够存储成背景透明的形式,并且可以将数张图存成一个文件,从而形成动画效果。</p> <p>*.png (Portable Network Graphics)<br />*.png是一种能存储32位信息的位图文件格式,其图像质量远胜过 *.gif。同*.gif一样,*.png也使用无损压缩方式来减少文件的大小。在压缩位图数据时,它采用了颇受好评的l z77算法的一个变种。目前,越来越多的软件开始支持这一格式,在不久的将来,它可能会在整个Web上广泛流行。*.png图像可以是灰阶的(16位)或彩色的(48位),也可以是8位的索引色。*.png图像使用的是高速交替显示方案,显示速度很快,只需要下载1/64的图像信息就可以显示出低分辨率的预览图像。与* .gif不同的是,*.png图像格式不支持动画。</p> <p>*.rle (Run Length Compressed)<br />*.rle是一种压缩过的位图文件格式。RLE压缩方案是一种极其成熟的压缩方案,特点是无损失压缩(Lossless),既节省了磁盘空间,又不损失任何图像数据。但是,有利就有弊,在打开这种压缩文件时,要花费更多的时间。此外,一些兼容性不太好的应用程序可能会打不开* .rle文件。</p> <p>*.tif/*.tiff (Tag Image File Format)<br />*.tiff是由Aldus为Macintosh机开发的一种图形文件格式,最早流行于Macintosh,现在Windows上主流的图像应用程序都支持该格式。目前,它是Macintosh和PC机上使用最广泛的位图格式,在这两种硬件平台上移植*.tiff图形图像十分便捷,大多数扫描仪也都可以输出*.tiff格式的图像文件。该格式支持的色彩数最高可达 16M种。其特点是:存储的图像质量高,但占用的存储空间也非常大,其大小是相应*.gif图像的3倍,*.jpeg图像的10倍;细微层次的信息较多,有利于原稿阶调与色彩的复制。该格式有压缩和非压缩两种形式,其中压缩形式使用的是LZW(Lempel-Ziv-Welch)无损压缩方案。在 PhotoShop中,*.tiff格式能够支持24个通道,它是除PhotoShop自身格式(即*.psd和*.pdd)外唯一能够存储多个四通道的文件格式。唯一的不足之处是:由于* .tiff独特的可变结构,所以对*.tiff文件解压缩非常困难。*.tiff格式现已发展到6.0版,由Aldus和Microsoft公司联合拥有版权,但其格式可以免费使用。另外,在3DS中你也可以生成*.tiff格式的文件。*.tiff文件被用来存储一些色彩绚丽、构思奇妙的贴图文件,它将 3DS、Macintosh、PhotoShop有机地结合在一起。</p> <p>数学描述图形图像文件<br />*.bw<br />*.bw是包含各种像素信息的一种黑白图形文件格式。</p> <p>*.cdr (CorelDraw)<br />*.cdr是CorelDraw中的一种图形文件格式。它是所有CorelDraw 应用程序中均能够使用的一种图形图像文件格式。</p> <p>*.col (Color Map File)<br />*.col是由Autodesk Animator、Autodesk Animator Pro等程序创建的一种调色板文件格式,其中存储的是调色板中各种项目的RGB值。</p> <p>*.dwg<br />*.dwg是AutoCAD中使用的一种图形文件格式。</p> <p>*.dxb (drawing interchange binary)<br />*.dxb是AutoCAD创建的一种图形文件格式。</p> <p>*.dxf (Autodesk Drawing Exchange Format)<br />*.dxf是AutoCAD中的图形文件格式,它以ASCII方式储存图形,在表现图形的大小方面十分精确,可被CorelDraw、3DS等大型软件调用编辑。</p> <p>*.wmf (Windows Metafile Format)<br />*.wmf是Microsoft Windows中常见的一种图元文件格式,它具有文件短小、图案造型化的特点,整个图形常由各个独立的组成部分拼接而成,但其图形往往较粗糙,并且只能在Microsoft Office中调用编辑。</p> <p>*.emf (Enhanced MetaFile)<br />*.emf是由Microsoft公司开发的Windows 32位扩展图元文件格式。其总体设计目标是要弥补在Microsoft Windows 3.1(Win16)中使用的*.wmf文件格式的不足,使得图元文件更加易于使用。</p> <p>*.eps (Encapsulated PostScript)<br />*.eps是用PostScript 语言描述的一种ASCII图形文件格式,在PostScript图形打印机上能打印出高品质的图形图像,最高能表示32位图形图像。该格式分为 PhotoShop EPS格式(Adobe Illustrator Eps)和标准EPS格式,其中标准EPS格式又可分为图形格式和图像格式。值得注意的是,在PhotoShop中只能打开图像格式的EPS文件。 *.eps格式包含两个部分:第一部分是屏幕显示的低解析度影像,方便影像处理时的预览和定位;第二部分包含各个分色的单独资料。*.eps文件以 DCS/CMYK形式存储,文件中包含CMYK四种颜色的单独资料,可以直接输出四色网片。但是,除了在PostScript打印机上比较可靠之外, *.eps格式还有许多缺陷:首先,*.eps格式存储图像效率特别低;其次,*.eps格式的压缩方案也较差,一般同样的图像经*.tiff的LZW压缩后,要比*.eps的图像小3到4倍。</p> <p>filmstrip<br />filmstrip即幻灯片,它是Premiere中的一种输出文件格式。Premiere将动画输出成一个长的竖条,竖条由独立方格组成。每一格即为一帧。每帧的左下角为时间编码,右下角为帧的编号。你可以在PhotoShop中调入该格式的文件,然后应用 PhotoShop特有的处理功能对其进行处理。但是,千万不可改变filmstrip文件的大小,如果改变了,则这幅图片就不能再存回f ilmstrip格式了,也就不能再返回Premiere了。</p> <p>*.ico (Icon file)<br />*.ico是Windows的图标文件格式。 </p> <p>*.iff (Image File Format)<br />*.iff是Amiga等超级图形处理平台上使用的一种图形文件格式,好莱坞的特技大片多采用该格式进行处理,可逼真再现原景。当然,该格式耗用的内存、外存等计算机资源也十分巨大。</p> <p>*.jpg/*.jpeg (Joint Photographic Expert Group)<br />*.jpg/*.jpeg是24位的图像文件格式,也是一种高效率的压缩格式,文件格式是JPEG(联合图像专家组)标准的产物,该标准由ISO与CCITT(国际电报电话咨询委员会)共同制定,是面向连续色调静止图像的一种压缩标准。其最初目的是使用64Kbps的通信线路传输720×576分辨率压缩后的图像。通过损失极少的分辨率,可以将图像所需存储量减少至原大小的10%。由于其高效的压缩效率和标准化要求,目前已广泛用于彩色传真、静止图像、电话会议、印刷及新闻图片的传送上。但那些被删除的资料无法在解压时还原,所以*.jpg/*.jpeg文件并不适合放大观看,输出成印刷品时品质也会受到影响。不过,普通用户不必担心,因为 *.jpg/*.jpeg的压缩算法十分先进,它对图形图像的损失影响不是很大,一幅16M(24位)的*.jpg/*.jpeg图像看上去与照片没有多大差别,非专业人士甚至无法分辨。同样一幅画面,用*.jpg/*.jpeg格式储存的文件是其他类型图形文件的1/10~1/20。一般情况下, *.jpg/*.jpeg文件只有几十KB,而色彩数最高可达到24位,所以它被广泛运用在Internet上,以节约宝贵的网络传输资源。同样,为了在一张光盘上储存更多的图形图像,CD出版商也乐意采用*.jpg/*.jpeg格式。</p> <p>*.lbm<br />*.lbm是Deluxe Paint中使用的一种图形文件格式,其编码方式类似于*.iff。</p> <p>*.mag<br />*.mag是日本人常用的一种图形文件格式。</p> <p>*.mac (Macintosh)<br />*.mac是Macintosh中使用的一种灰度图形文件格式,在Macintosh paintbrush中使用,其分辨率只能是720×567。</p> <p>*.mpt (Macintosh Paintbrush)<br />*.mpt是Macintosh中使用的一种图形文件格式。</p> <p>*.msk (Mask Data File)<br />*.msk是Animator Pro中的一种图形文件格式,其中包含一个位图图形。</p> <p>*.opt (Optics Menu Settings File) / *.twe (Tween Data File)<br />是Animator Pro创建的图形文件格式。</p> <p>*.ply (Polygon File)<br />*.ply是Animator Pro创建的一种图形文件格式,其中包含用来描述多边形的一系列点的信息。</p> <p>*.pbm/*.pgm/*.ppm (Portable Pixmap)<br />图形文件格式。</p> <p>*.pcd (Kodak PhotoCD)<br />*.pcd是一种Photo CD文件格式,由Kodak公司开发,其他软件系统只能对其进行读取。该格式主要用于存储CD-ROM上的彩色扫描图像,它使用YCC色彩模式定义图像中的色彩。YCC色彩模式是CIE色彩模式的一个变种。CIE色彩空间是定义所有人眼能观察到的颜色的国际标准。YCC和CIE色彩空间包含比显示器和打印设备的RGB色和CMYK色多得多的色彩。Photo CD图像大多具有非常高的质量,将一卷胶卷扫描为Photo CD文件的成本并不高,但扫描的质量还要依赖于所用胶卷的种类和扫描仪使用者的操作水平。</p> <p>*.pcx (PC Paintbrush) /*.pcc<br />*.pcx最早是由Zsoft公司的PC Paintbrush图形软件所支持的一种经过压缩的PC位图文件格式。后来,Microsoft将PC Paintbrush移植到Windows环境中,*.pcx图像格式也就得到了更多的图形图像处理软件的支持。该格式支持的颜色数从最早的16色发展到目前的1677万色。它采用行程编码方案进行压缩,带有一个128字节的文件头。</p> <p>*.pic<br />*.pic是一种图形文件格式,其中包含了未经压缩的图像信息。</p> <p>*.pict/*.pict2/*.pnt<br />*.pict文件格式主要应用于Mac机上,也可在安装了Quick Time的PC机上使用。该格式的文件不适用于打印(若在PostScript打印机上打印*.pict格式的文件,则会造成PostSlipt错误),而经常用于多媒体项目。*.pict也是Mac应用软件用于图像显示的格式之一。</p> <p>*.psd (Adobe PhotoShop Document) /*.pdd<br />*.psd是PhotoShop中使用的一种标准图形文件格式,可以存储成RGB或CMYK模式,还能够自定义颜色数并加以存储。*.psd文件能够将不同的物件以层(Layer)的方式来分离保存,便于修改和制作各种特殊效果。<br />*.pdd 和*.psd一样,都是PhotoShop软件中专用的一种图形文件格式,能够保存图像数据的每一个细小部分,包括层、附加的蒙版通道以及其他内容,而这些内容在转存成其他格式时将会丢失。另外,因为这两种格式是PhotoShop支持的自身格式文件,所以PhotoShop能以比其他格式更快的速度打开和存储它们。唯一的遗憾是,尽管PhotoShop在计算过程中应用了压缩技术,但用这两种格式存储的图像文件仍然特别大。不过,用这两种格式存储图像不会造成任何的数据流失,所以当你在编辑过程中时,最好还是选择这两种格式存盘,以后再转换成占用磁盘空间较小、存储质量较好的其他文件格式。</p> <p>*.pxr (PiXaR)<br />也许只有PIXAR工作站用户才比较了解*.pxr这种文件格式,该格式支持灰度图像和RGB彩色图像。可在PhotoShop中打开一幅由PIXAR工作站创建的*.pxr图像,也可以用*.pxr格式来存储图像文件,以便输送到工作站上。</p> <p>*.ras (Sun Raster files) /*.raw (Raw GrayScale)<br />图形文件格式。</p> <p>Scitex CT<br />Scitex CT是在Scitex高档印前工作站上创建的一种图像文件格式,该工作站主要用于图像的编辑和分色。Scitex CT图像总是以CMYK模式打开,如果它们最终还要返回到Scitex系统,则请保持其CMYK模式。可利用PhotoShop来打开并编辑Scitex CT图像。</p> <p>*.tga (Tagged Graphic)<br />*.tga是True Vision公司为其显示卡开发的一种图像文件格式,创建时间较早,最高色彩数可达32位,其中包括8位Alpha通道用于显示实况电视。该格式已经被广泛应用于PC机的各个领域,而且该格式文件使得Windows与3DS相互交换图像文件成为可能。你可以先在3DS中生成色彩丰富的*.tga文件,然后在Windows中利用PhotoShop、Freeherd、Painter等应用软件来进行修改和渲染。</p> <p>*.win<br />*.win是类似于*.tga的一种图形文件格式。</p> <p>*.xbm (X BitMap)<br />*.xbm是一种图形文件格式。</p> <p><img width="1" height="1" src="http://www.windstudio.net/images/blank.gif" /> </p>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值