📄 jpeg_dec.inc
字号:
;// Public include
OPTION NOKEYWORD: <width>
;// the structure returned by JPG_Decode()
JPEGIMAGE STRUCT 4
;// width
width dword ?
;// height
height dword ?
;// scan length
scanlength dword ?
;// pointer to RGB data
pRGB dword ?
;// bits per pixel
bitsPixel dword ?
;// number of components
Nf dword ?
JPEGIMAGE ENDS
;// prototypes
JPEG_Decode PROTO STDCALL bufIn:dword, sizIn:dword, pBmp:dword, options:dword
JPEG_Free PROTO STDCALL img:dword
;// error codes
;// unexpected end of file
JPEG_EOF = 0
;// out of memory
JPEG_OUTOFMEM = 1
;// no error
JPEG_SUCCESS = 2
;// cpu not supported
JPEG_CPUNOTSUPPORTED = 3
;// bad file
JPEG_BADFILE = 4
;// format not supported
JPEG_FORMATNOTSUPPORTED = 5
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -