[C/C++] RGBA数组生成Windows下的ico文件

Widows下只认.ico格式为程序图标,这是一种源自bmp的图片格式。ico中的颜色可以通过color table来表示也可以直接通过RGBA数组表示。

ico文件的格式见官方文档:

http://msdn.microsoft.com/en-us/library/ms997538.aspx

http://msdn.microsoft.com/en-us/library/windows/desktop/dd183376%28v=vs.85%29.aspx



其它一些关于ico文件的文档见:

比较详细的原理介绍:http://blogs.msdn.com/b/oldnewthing/archive/2010/10/18/10077133.aspx

ico格式描述:http://www.daubnet.com/en/file-format-ico

Programming Tips & Tricks:http://tipsandtricks.runicsoft.com/Cpp/BitmapTutorial.html

bmp和ico格式描述:http://www.digicamsoft.com/bmp/bmp.html



ico文件相关实现:

IconImagePlugin in Python PIL: http://code.google.com/p/casadebender/source/browse/python/PIL/Win32IconImagePlugin.py

construct ico from RGBA array - a python implementation:http://fayaa.com/code/view/6094/

png2ico:http://www.winterdrache.de/freeware/png2ico/



下面是一个用从RGBA生成ico文件的C语言实现,生成一个红色的图标文件 - test.ico。

#define _CRT_SECURE_NO_WARNINGS
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cassert>

void Fwrite(FILE * f, char * data, int byte)
{
	if (1 != fwrite(data, byte, 1, f)) {
		perror("fwrite error");
		exit(1);
	}
}

void WriteByte(FILE* f, unsigned int val, int byte)
{
    char data[4];
    assert(byte <= 4);
    memcpy((void *)data, (void *)&val, byte);
    Fwrite(f, data, byte);
};


void generate_ico_file(const char * filename, char * body, 
        int width, int height, int has_alpha)
{
    int x, y;
    int index = 0;
    int Size = 0;
    int offset= 6 + 1 * 16;
    int bpp = 32;

    FILE* outfile=fopen(filename,"wb");
    if (outfile==NULL) {
        perror("fopen error"); 
        exit(1);
    };

    WriteByte(outfile,0, 2);				//idReserved
    WriteByte(outfile,1, 2);				//idType
    WriteByte(outfile,1, 2);				//idCount 

    WriteByte(outfile,width, 1);			//bWidth
    WriteByte(outfile,height, 1);			//bHeight
    WriteByte(outfile,0, 1);				//bColorCount
    WriteByte(outfile,0, 1);				//bReserved
    WriteByte(outfile,1, 2);				//wPlanes
    WriteByte(outfile,bpp, 2);				//wBitCount
    Size = 40 + height * ((width + 31) / 32 * 32 / 8 + width * 3);	//Note 4 bytes alignment
    if (bpp == 32)
        Size += height * width;
    WriteByte(outfile,Size, 4);			//dwBytesInRes
    WriteByte(outfile,offset, 4);			//dwImageOffset

    WriteByte(outfile,40, 4);				//biSize
    WriteByte(outfile,width, 4);			//biWidth
    WriteByte(outfile,2 * height, 4);		//biHeight 
    WriteByte(outfile,1, 2);				//biPlanes
    WriteByte(outfile,bpp, 2);				//biBitCount
    WriteByte(outfile,0, 4);				//biCompression
    WriteByte(outfile,0, 4);				//biSizeImage
    WriteByte(outfile,0, 4);				//biXPelsPerMeter   
    WriteByte(outfile,0, 4);				//biYPelsPerMeter
    WriteByte(outfile,0, 4);				//biClrUsed 
    WriteByte(outfile,0, 4);				//biClrImportant

    // XOR mask
    for (y= height - 1; y >= 0; --y) { 
        for (x = 0; x < width; ++x) {
            index = (y * width + x) * 4;
            WriteByte(outfile, body[index], 1);        //Blue 
            WriteByte(outfile, body[index + 1], 1);    //Green
            WriteByte(outfile, body[index + 2], 1);    //Red
            WriteByte(outfile, has_alpha ? body[index + 3] : 255, 1); //Alpha
        }
    }

    // AND mask
    for (y = 0; y < (height * ((width + 31) / 32 * 32 / 8)); ++y) { 
        WriteByte(outfile, 0, 1);
    }

    fclose(outfile);
}

#define WIDTH   72
#define HEIGHT  72

int main()
{
    int image[WIDTH * HEIGHT];
    int i, j;
    for (i = 0; i < HEIGHT; ++i) {
        for (j = 0; j < WIDTH; ++j) {
           image[i * WIDTH + j]  = 0xFFFF0000;  	// pure red icon, for test
        }
    }

    generate_ico_file("test.ico", (char *)image, WIDTH, HEIGHT, 1);

    return 0;
}




Windows系统下,我们可以使用Qt C++编程语言来生成条形码和二维码。首先,我们需要下载并安装Qt开发环境。 生成条形码可以使用Zint库,它是一个开源的条形码生成库。我们需要先下载和安装Zint库,并将其添加到我们的Qt项目中。 接下来,我们可以在Qt的项目中使用以下代码来生成条形码: ```cpp #include <iostream> #include <QImage> #include <QPainter> #include <QFile> #include <QTextStream> extern "C" { #include "zint.h" } int main() { int error_number; struct zint_symbol *my_symbol; int input_mode = UNICODE_MODE; // 创建一个Zint符号 my_symbol = ZBarcode_Create(); // 设置要生成的条形码类型 my_symbol->symbology = BARCODE_CODE128; // 设置输入数据(条形码内容) QByteArray data = "Hello World"; ZBarcode_Encode_and_Buffer(my_symbol, (unsigned char*)data.data(), 0, 0); // 创建一个QImage对象 QImage img(QSize(my_symbol->bitmap_width, my_symbol->bitmap_height), QImage::Format_RGBA8888); // 使用QPainter绘制条形码 QPainter painter; painter.begin(&img); painter.setCompositionMode(QPainter::CompositionMode_Source); painter.fillRect(img.rect(), Qt::white); painter.setCompositionMode(QPainter::CompositionMode_DestinationOver); painter.drawImage(0, 0, QImage(my_symbol->bitmap, my_symbol->bitmap_width, my_symbol->bitmap_height, QImage::Format_Mono)); // 保存生成的条形码图片 img.save("barcode.png"); // 释放Zint符号 ZBarcode_Delete(my_symbol); return 0; } ``` 这样,我们就可以在Qt的项目中生成条形码,并将其保存为barcode.png文件。 而生成二维码可以使用QZXing库,它是一个支持二维码生成和解码的Qt库。我们需要先下载并安装QZXing库,并将其添加到我们的Qt项目中。 接下来,我们可以在Qt的项目中使用以下代码来生成二维码: ```cpp #include <iostream> #include <QImage> #include <QPainter> #include <QFile> #include <QTextStream> #include <QZXing> int main() { // 创建一个QZXing对象 QZXing zxing; // 设置要生成的二维码内容 QString data = "Hello World"; // 使用QZXing生成二维码 QImage img = zxing.encode(data); // 保存生成的二维码图片 img.save("qrcode.png"); return 0; } ``` 这样,我们就可以在Qt的项目中生成二维码,并将其保存为qrcode.png文件。 通过以上方法,我们可以在Windows下使用Qt C++生成条形码和二维码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值