Chinaunix首页 | 论坛 | 博客
  • 博客访问: 908717
  • 博文数量: 201
  • 博客积分: 8078
  • 博客等级: 中将
  • 技术积分: 2162
  • 用 户 组: 普通用户
  • 注册时间: 2008-05-20 17:22
文章分类

全部博文(201)

文章存档

2013年(3)

2012年(11)

2011年(34)

2010年(25)

2009年(51)

2008年(77)

分类: WINDOWS

2009-09-23 14:19:31


#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <assert.h>

typedef struct
{
    uint16_t bfType;
    uint32_t bfSize;
    uint16_t bfReserved1;
    uint16_t bfReserved2;
    uint32_t bfOffBits;
}__attribute__((packed)) BITMAPFILEHEADER;

typedef struct
{
    uint32_t biSize;
    int32_t biWidth;
    int32_t biHeight;
    uint16_t biPlanes;
    uint16_t biBitCount;
    uint32_t biCompression;
    uint32_t biSizeImage;
    int32_t biXPelsPerMeter;
    int32_t biYPelsPerMeter;
    uint32_t biClrUsed;
    uint32_t biClrImportant;
} BITMAPINFOHEADER;

int bmp_init(size_t width, size_t height, char *bmpbuf)
{
    BITMAPFILEHEADER fhdr;
    size_t width3 = (width + 3) & ~0x03;
    memcpy(&fhdr.bfType, "BM", 2);
    fhdr.bfReserved1 = 0;
    fhdr.bfReserved2 = 0;
    fhdr.bfOffBits = sizeof(BITMAPFILEHEADER);
    fhdr.bfOffBits += sizeof(BITMAPINFOHEADER);
    fhdr.bfOffBits += 256 * 4;
    fhdr.bfSize = width3 * height + fhdr.bfOffBits;

    BITMAPINFOHEADER ihdr;
    ihdr.biSize = sizeof(ihdr);
    ihdr.biWidth = width;
    ihdr.biHeight = height;
    ihdr.biPlanes = 1;
    ihdr.biBitCount = 8;
    ihdr.biCompression = 0;
    ihdr.biSizeImage = 0; //width3*height;

    ihdr.biXPelsPerMeter = 0x1075;
    ihdr.biYPelsPerMeter = 0x1075;
    ihdr.biClrUsed = 256;
    ihdr.biClrImportant = 256;
    memcpy(bmpbuf, &fhdr, sizeof(fhdr));
    memcpy(bmpbuf + sizeof(fhdr), &ihdr, sizeof(ihdr));
    return sizeof(fhdr) + sizeof(ihdr);
}

char buffer[1024 * 1024 * 3];
char plane_buffer[1024 * 1024];

int data2bitmap(FILE * fp, size_t width, size_t count)
{
    static size_t generate_filename = 0;
    sprintf(plane_buffer, "out-%d.bmp", generate_filename++);
    FILE *fpo = fopen(plane_buffer, "wb");
    int height = (count + width - 1) / width;
    int hdrsize = bmp_init(width, height, plane_buffer);
    fwrite(plane_buffer, hdrsize, 1, fpo);

    char *p = plane_buffer;
    for (int i = 0; i < 256; i++){
         *p++ = i; *p++ = rand();
         *p++ = (255 - i); *p++ = 0;
    }

    fwrite(plane_buffer, 4, 256, fpo);
       while (!feof(fp)){
         count = fread(buffer, 1, width, fp);
         memset(buffer + count, 0x20, width - count);
         fwrite(buffer, 1, width, fpo);
    }
    fclose(fpo);
    return 0;
}

int main(int argc, char *argv[])
{
    int width;
    for (int i = 1; i < argc; i++){
           FILE *fp = fopen(argv[i], "rb");
         if (fp == NULL)
             continue;
         fseek(fp, 0, SEEK_END);
         long count = ftell(fp);
         rewind(fp);
         if (width = sqrt(count))
             data2bitmap(fp, (width+3)&~0x3, count);
         fclose(fp);
       }
    return 0;
}


dd if=/path/to/bmp bs=1078 skip=1


#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <assert.h>

typedef struct
{
    uint16_t bfType;
    uint32_t bfSize;
    uint16_t bfReserved1;
    uint16_t bfReserved2;
    uint32_t bfOffBits;
}__attribute__((packed)) BITMAPFILEHEADER;

typedef struct
{
    uint32_t biSize;
    int32_t biWidth;
    int32_t biHeight;
    uint16_t biPlanes;
    uint16_t biBitCount;
    uint32_t biCompression;
    uint32_t biSizeImage;
    int32_t biXPelsPerMeter;
    int32_t biYPelsPerMeter;
    uint32_t biClrUsed;
    uint32_t biClrImportant;
} BITMAPINFOHEADER;

int bmp_init(size_t width, size_t height, int biHeight, char *bmpbuf)
{
    BITMAPFILEHEADER fhdr;
    size_t width3 = ((width + 7) / 8 + 3) & ~0x03;
    memcpy(&fhdr.bfType, "BM", 2);
    fhdr.bfReserved1 = 0;
    fhdr.bfReserved2 = 0;
    fhdr.bfOffBits = sizeof(BITMAPFILEHEADER);
    fhdr.bfOffBits += sizeof(BITMAPINFOHEADER);
    fhdr.bfOffBits += 2 * 4;
    fhdr.bfSize = width3 * height + fhdr.bfOffBits;

    BITMAPINFOHEADER ihdr;
    ihdr.biSize = sizeof(ihdr);
    ihdr.biWidth = width;
    ihdr.biHeight = biHeight;
    ihdr.biPlanes = 1;
    ihdr.biBitCount = 1;
    ihdr.biCompression = 0;
    ihdr.biSizeImage = width3 * height;
    ihdr.biXPelsPerMeter = 0x1075;
    ihdr.biYPelsPerMeter = 0x1075;
    ihdr.biClrUsed = 2;
    ihdr.biClrImportant = 2;
    memcpy(bmpbuf, &fhdr, sizeof(fhdr));
    memcpy(bmpbuf + sizeof(fhdr), &ihdr, sizeof(ihdr));
    return sizeof(fhdr) + sizeof(ihdr);
}


typedef struct _octree{
    size_t index;

    size_t leaf;
    size_t level;

    size_t count;
    size_t colorR, colorG, colorB;

    struct _octree *parent;
    struct _octree *children[8];
}octree;

static octree g_root;
static size_t g_count = 0;
static octree *g_leafnodes[257];

int clrcolor(octree *root)
{
    for (int i = 0; i < 8; i++){
        octree * node = root->children[i];
        if (node == NULL)
            continue;
        clrcolor(node);
        delete node;
    }
    memset(root, 0, sizeof(octree));
    g_count = 0;
    return 0;
}

int mapcolor(octree *root, size_t r, size_t g, size_t b)
{
    octree *p = root;
    static size_t rr = (p->colorR / p->count);
    static size_t rg = (p->colorG / p->count);
    static size_t rb = (p->colorB / p->count);
    static float ry = 0.257 * rr + 0.504 * rg + 0.098 * rb;
    float cy = 0.257 * r + 0.504 * g + 0.098 * b;
    return (cy > ry);
}

int addcolor(octree * root, size_t r, size_t g, size_t b)
{
    octree *p = root;
    p->colorR += r;
    p->colorG += g;
    p->colorB += b;
    p->count++;
    return 0;
}

char buffer[1024 * 1024 * 3 * 3];
char plane_buffer[1024 * 1024];

char outbuff[1024 * 1024 * 3];

int doconvert(const char *path)
{
    FILE *fp = fopen(path, "rb");
    int count = fread(buffer, 1, sizeof(buffer), fp);
    fclose(fp);

    BITMAPFILEHEADER * pbfhdr = NULL;
    pbfhdr = (BITMAPFILEHEADER *)buffer;
    BITMAPINFOHEADER * pbihdr = NULL;
    pbihdr = (BITMAPINFOHEADER *)(pbfhdr + 1);

    assert(pbihdr->biBitCount == 24);
    assert(pbihdr->biCompression == 0);

    int i, j, line, height;
    char *pd, *doff = (char*)(buffer + pbfhdr->bfOffBits);
    line = (pbihdr->biWidth * 3 + 3) & ~0x03;

    height = -pbihdr->biHeight;
    if (pbihdr->biHeight > 0){
        height = pbihdr->biHeight;
        doff += (line * height - line);
        line = -line;
    }

    for (i = 0; i < height; i++){
        pd = doff;
        for (j = 0; j < pbihdr->biWidth; j++){
            uint8_t * rgb = (uint8_t*)pd;
            addcolor(&g_root, rgb[0], rgb[1], rgb[2]);
            pd += 3;
        }
        doff += line;
    }

    char * plane = plane_buffer;
    for (i = 0; i < g_count; i++){
        octree * p = g_leafnodes[i];
        *plane++ = p->colorR / p->count;
        *plane++ = p->colorG / p->count;
        *plane++ = p->colorB / p->count;
        assert(p->leaf);
        p->index = i;
        plane++;
    }

    char * opd = outbuff;
    int line8 = ((pbihdr->biWidth + 7) / 8 + 3) & ~0x03;
    doff = (char*)(buffer + pbfhdr->bfOffBits);
    line = (pbihdr->biWidth * 3 + 3) & ~0x03;

    size_t _cnts[2], _rgbs[3][2];

    memset(_cnts, 0, sizeof(_cnts));
    memset(_rgbs, 0, sizeof(_rgbs));

    size_t bitcnt = 0;
    size_t bitbuf = 0;

    char * opdbase = NULL;
    for (i = 0; i < height; i++){
        pd = doff;
        opdbase = opd;
        for (j = 0; j < pbihdr->biWidth; j++){
            uint8_t *rgb = (uint8_t*)pd;
            int ij = mapcolor(&g_root, rgb[0], rgb[1], rgb[2]);
            _cnts[ij] ++;
            for (int u = 0; u < 3; u++)
                _rgbs[u][ij] += rgb[u];
            pd += 3;

            bitbuf <<= 1;
            bitbuf |= (ij & 1);
            bitcnt++;

            while (bitcnt >= 8){
                *opdbase++ = bitbuf&0xFF;
                bitbuf >>= 8;
                bitcnt -= 8;
            }
        }
        if (bitcnt > 0){
            *opdbase++ = bitbuf << (8 - bitcnt);
            bitcnt = 0;
        }
        doff += line;
        opd += line8;
    }

    for (i = 0; i < 3; i++)
        plane_buffer[i] = _rgbs[i][0] / _cnts[0];

    for (i = 0; i < 3; i++)
        plane_buffer[4+i] = _rgbs[i][1] / _cnts[1];


    char bmpbuff[8192];
    count = bmp_init(pbihdr->biWidth, height, pbihdr->biHeight, bmpbuff);

    FILE *fpo = fopen("out.bmp", "wb");
    if (fpo != NULL){
        fwrite(bmpbuff, 1, count, fpo);
        fwrite(plane_buffer, 4, 2, fpo);
        fwrite(outbuff, line8, height, fpo);
        fclose(fpo);
    }

    clrcolor(&g_root);
    return 0;
}

int main(int argc, char *argv[])
{
    for (int i=1; i<argc; i++)
        doconvert(argv[i]);
    return 0;
}


阅读(807) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~