2016年10月

2016年10月03日(月) #00 Windows Update

2016年10月04日(火) #00 人間は野生動物を絶滅させたというけれど・・・

2016年10月05日(水) #00 人類が絶滅しそうになった日

2016年10月06日(木) #00 能力と役割

2016年10月06日(木) #01 多様性と選別が鍵?

2016年10月13日(木) #00 プログラミングの神様が降りてきた

2016年10月14日(金) #00 色階調変換アルゴリズム

2016年10月18日(火) #00 画像の加工

#include <stdio.h>
#include <stdlib.h>

int main()
{
    FILE *fp = fopen("all.bmp", "rb");
    unsigned char *b = malloc(16 * 1024 * 1024);
    int i = fread(b, 1, 16 * 1024 * 1024 - 2, fp);
    fclose(fp);
    int j;
    for (j = 0x36; j < i; j++)
        b[j] = (b[j] + 0xff * 3) / 4;
    fp = fopen("all_c.bmp", "wb");
    fwrite(b, 1, i, fp);
    fclose(fp);
    return 0;
}

こめんと欄


コメントお名前NameLink

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS