所以我想在C++代碼中導出一個.bmp文件,除了一件主要的事情:行填充,我已經工作了。我不是100%確定線填充的工作原理,但我知道我需要它。我的算法除了填充工作,我手動添加填充在十六進制編輯器到我的導出圖像,它的工作。但是,我如何添加填充?這裏是我的: //Size of the file in bytes
int fileSize = 54 + (3 * width * height)
我正在使用以下代碼將BMP圖像轉換爲GRF格式。 Public Shared Function CreateGrf(filename As String, imagename As String) As String
Dim bmp As Bitmap = Nothing
Dim imgData As BitmapData = Nothing
Dim pixels A
我做它的基礎上: https://en.wikipedia.org/wiki/BMP_file_format 我想從頭C. #include <stdio.h>
#include <stdlib.h>
typedef struct HEADER {
short FileType;
int FileSize;
short R1;
short R2;