在TGA文件格式中,x origin和y origin的目的是什么?

时间:2014-08-04 06:53:01

标签: image file-format specifications tga

TGA图像规范包含以下两个字段:

Field 5.1 (2 bytes) - X-origin of Image:
    These bytes specify the absolute horizontal coordinate for the lower
    left corner of the image as it is positioned on a display device having
    an origin at the lower left of the screen (e.g., the TARGA series).

Field 5.2 (2 bytes) - Y-origin of Image:
    These bytes specify the absolute vertical coordinate for the lower
    left corner of the image as it is positioned on a display device having
    an origin at the lower left of the screen (e.g., the TARGA series).

这对我来说很奇怪。为什么屏幕上的图像位置包含在图像本身的数据中?我希望图像不关心它们的位置,因为它是渲染引擎的责任。这可能与TGA图像是为特殊视频卡设计的事实有关吗?

以下是TGA规范的链接供参考:http://www.dca.fee.unicamp.br/~martino/disciplinas/ea978/tgaffs.pdf

1 个答案:

答案 0 :(得分:3)

经过一番对话后,我们推断这些字段用于将大图像分解为许多较小的图像。例如,如果将图像分割为256x256块,则3Dfx视频卡在绘制全屏图像时效率最高。可以使用此字段表示屏幕上这些块的偏移量,这将允许渲染器重建原始图像。

请参阅此Twitter帖子:https://twitter.com/Donzanoid/status/496248178799550464