gpt4 book ai didi

image - 从 Lua 中的 ICO 文件中读取 16x16 图像的 AND 掩码

转载 作者:行者123 更新时间:2023-12-05 05:24:27 24 4
gpt4 key购买 nike

我正在创建一个函数,该函数将解析和 ICO/CUR 并将数据转换为普通像素(特定于我的 API),然后将其提供给 dxCreateTexture 函数,该函数将创建最终图像。我目前正在处理 ICO 文件中的图像为 8bpp 或更少的情况。这是目前的做法:

  1. 我读取调色板并将每种颜色存储在一个数组中。
  2. 我继续阅读 XOR 掩码,其中包含每个像素颜色的索引,并将每个像素存储在另一个表中。
  3. 然后我阅读了 AND 掩码,我知道它是 1bpp。

我将在下面发布的代码非常适用于尺寸为 32x32 的 1bpp、4bpp 和 8bpp 图像,XOR 和 AND 掩码被正确解释,但对于尺寸为 8x8、16x16 或 48x48 的图像(我怀疑有其他尺寸)只有 XOR 掩码被正确解释。读取 AND 掩码将导致错位的透明像素。请记住,我还没有翻转图像,因此这段代码会产生颠倒的图像。

local IcoSignature = string.char(0,0,1,0);
local PngSignature = string.char(137,80,78,71,13,10,26,10);

local AlphaByte = string.char(255);
local TransparentPixel = string.char(0,0,0,0);

function ParseCur(FilePath)
if (fileExists(FilePath) == true) then
local File = fileOpen(FilePath);
if (File ~= false) and (fileRead(File,4) == IcoSignature) then
local Icons = {}
for i = 1,fileReadInteger(File,2) do -- number of icons in file
local SizeX = fileReadInteger(File,1); -- icon width
if (SizeX == 0) then
SizeX = 256;
end
local SizeY = fileReadInteger(File,1); -- icon height
if (SizeY == 0) then
SizeY = 256;
end

fileRead(File,2); -- skip ColorCount and Reserved

local PlanesNumber = fileReadInteger(File,2);
local BitsPerPixel = fileReadInteger(File,2);

local Size = fileReadInteger(File); -- bytes occupied by icon
local Offset = fileReadInteger(File); -- icon data offset

Icons[i] = {
PlanesNumber = PlanesNumber,
BitsPerPixel = BitsPerPixel,

SizeX = SizeX,
SizeY = SizeY,

Texture = true
}

local PreviousPosition = fileGetPos(File);

fileSetPos(File,Offset);
if (fileRead(File,8) == PngSignature) then -- check data format (png or bmp)
fileSetPos(File,Offset);

-- to do
else
fileSetPos(File,Offset+4); -- skip BITMAPINFOHEADER Size

local SizeX = fileReadInteger(File);
local SizeY = fileReadInteger(File)/2;

local PlanesNumber = fileReadInteger(File,2);
local BitsPerPixel = fileReadInteger(File,2);

fileRead(File,24); -- skip rest of BITMAPINFOHEADER

local Pixels = {}
if (BitsPerPixel == 1) or (BitsPerPixel == 4) or (BitsPerPixel == 8) then
local Colors = {}
for j = 1,2^(PlanesNumber*BitsPerPixel) do
Colors[j] = fileRead(File,3)..AlphaByte;
fileRead(File,1);
end

local PixelsPerByte = 8/BitsPerPixel;
local CurrentByte;

for y = 1,SizeY do -- XOR mask
Pixels[y] = {}

local CurrentRow = Pixels[y];
for x = 0,SizeX-1 do
local CurrentBit = x%PixelsPerByte;
if (CurrentBit == 0) then
CurrentByte = fileReadInteger(File,1);
end

CurrentRow[x+1] = Colors[bitExtract(
CurrentByte,
(PixelsPerByte-1-CurrentBit)*BitsPerPixel,BitsPerPixel
)+1];
end
end

for y = 1,SizeY do -- AND mask
local CurrentRow = Pixels[y];
for x = 0,SizeX-1 do
local CurrentBit = x%8;
if (CurrentBit == 0) then
CurrentByte = fileReadInteger(File,1);
end

if (bitExtract(CurrentByte,7-CurrentBit,1) == 1) then
CurrentRow[x+1] = TransparentPixel;
end
end
end

for y = 1,SizeY do -- concatenate rows into strings
Pixels[y] = table.concat(Pixels[y]);
end


Icons[i].Texture = dxCreateTexture(
table.concat(Pixels)..string.char(
bitExtract(SizeX,0,8),bitExtract(SizeX,8,8),
bitExtract(SizeY,0,8),bitExtract(SizeY,8,8)
), -- plain pixels
nil,
false
);
elseif (BitsPerPixel == 16) or (BitsPerPixel == 24) or (BitsPerPixel == 32) then
-- to do
end
end

fileSetPos(File,PreviousPosition); -- continue reading next ICO header
end
fileClose(File);

return Icons;
end
end
end

我想 fileExists、fileOpen、fileClose、fileGetPos 和 fileSetPos 是不言自明的函数。其余函数参数如下:

  • fileRead(file file, number bytes) - 从 file 中读取 bytes 字节并将它们作为字符串
  • fileReadInteger(file file, [number bytes = 4], [bool order = true]) - 读取一个整数,大小为来自文件bytes 字节,按顺序(little -edian = true,big-edian = false)
  • bitExtract(number value, number filed, number width)
  • dxCreateTexture(string pixels, [string format = "argb"], [bool mipmaps = true])

以下是该函数在其当前状态下的一些输出:http://i.imgur.com/dRlaoan.png第一个图像是 16x16,AND 掩码代码被注释掉,第二个是 32x32,AND 掩码代码被注释掉,第三个是 16x16,AND 掩码代码被注释掉,第四个是 32x32,AND 掩码代码被注释掉。带有 AND 掩码代码的 8x8 和 48x48 图像看起来与演示中的第三张图像相同。

用于演示的 ICO:http://lua-users.org/files/wiki_insecure/lua-std.ico

最佳答案

谢谢@EgorSkriptunoff!

This mask is also a subject to right-padding its every line with zeroes.

确实是这个问题。每个循环中的三行代码解决了它。

异或掩码:

if ((SizeX/PixelsPerByte)%4 ~= 0) then
fileRead(File,4-SizeX/PixelsPerByte%4);
end

和面具:

if ((SizeX/8)%4 ~= 0) then
fileRead(File,4-SizeX/8%4);
end

关于image - 从 Lua 中的 ICO 文件中读取 16x16 图像的 AND 掩码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34548858/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com