像素头文件定义这样改,可以吗
下面是一段定义读写BMP图片的头文件我想把它改成都用简单的字母表示,大家说可以吗,不会出现啥问题把
Option Explicit
Public Type BmpFileHeard
'位图文件头
BmpType As String * 2 '位图标志
BmpFileSize As Long '位图文件的总字节数
BmpReserved As Long '保留字节
BmpOffBits As Long '位图阵列的起始位置
End Type
Public Type BmpPictureHeard
'位图信息头
BmpFileHeardLong As Long '信息头的长度
BmpWidth As Long '宽(像素)
BmpHeight As Long '高(像素)
BmpPlanes As Integer '位图设备级别
BmpBitCount As Integer '颜色数
BmpCompression As Long '压缩类型(0表示不压缩)
BmpSizeImage As Long '位图阵列表字节数
BmpXPlesPerMeter As Long '水平分辨率
BmpYPlesPerMeter As Long '垂直分辨率
BmpClrUsed As Long '位图实际使用的颜色表中的颜色变址数
BmpClrImportant As Long '位图显示过程中被认为重要颜色变址数
End Type
下面是我改的,我觉得这样好记,大家说可以吗,
它们原来的名字没有什么特殊含义把
Option Explicit
Public Type a
'位图文件头
b As String * 2 '位图标志
c As Long '位图文件的总字节数
d As Long '保留字节
e As Long '位图阵列的起始位置
End Type
Public Type f '位图信息头
g As Long '信息头的长度
h As Long '宽(像素)
i As Long '高(像素)
j As Integer '位图设备级别
k As Integer '颜色数
r As Long '压缩类型(0表示不压缩)
m As Long '位图阵列表字节数
n As Long '水平分辨率
o As Long '垂直分辨率
p As Long '位图实际使用的颜色表中的颜色变址数
q As Long '位图显示过程中被认为重要颜色变址数
End Type