Linux C语言实现把微信Image的dat文件转成png图片

cpp 复制代码
#include <stdio.h>
#include <dirent.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <stdlib.h>
#include <string.h>

#define BUFFER_SIZE 1024

void open_and_display_file(const char *filepath, const char *dir)
{
    unsigned char Decode = 0;
    static int image_id = 0;
    unsigned char imagePath[PATH_MAX] = {0};
    unsigned char buffer[BUFFER_SIZE] = {0};
    FILE *imageFp = NULL;
    FILE *file = NULL;
    int read_len = 0;
    int write_len = 0;
    sprintf(imagePath, "%s/%d.png", dir, image_id);
    image_id++;
    file = fopen(filepath, "r");
    if (file == NULL)
    {
        perror("无法打开文件:");
        return;
    }
    imageFp = fopen(imagePath, "wb+");
    if (imageFp == NULL)
    {
        perror("无法打开文件:");
        return;
    }
    ftruncate(fileno(imageFp), 0);
    fread(buffer, 1, 2, file);
    int mData1 = buffer[0] ^ 0xFF;
    int mData2 = buffer[1] ^ 0xD8;
    printf("mData1 %X  mData2  %x\n", mData1, mData2);
    if (mData1 == mData2)
    {
        Decode = mData1;
        printf("Decode JPEG found %X %x %x\n", buffer[0], buffer[1], Decode);
    }
    else
    {
        printf("Decode JPEG not found %X %x %x\n", buffer[0], buffer[1], Decode);
        mData1 = buffer[0] ^ 0x89;
        mData2 = buffer[1] ^ 0x50;
        if (mData1 == mData2)
        {
            Decode = mData1;
            printf("Decode PNG found %X %x %x\n", buffer[0], buffer[1], Decode);
        }else{
            printf("Decode PNG not found %X %x %x\n", buffer[0], buffer[1], Decode);
        }
    }

    fseek(file, 0, SEEK_SET);
    while (!feof(file))
    {
        read_len = fread(buffer, 1, BUFFER_SIZE, file);
        for (int i = 0; i < read_len; i++)
        {
            buffer[i] ^= Decode;
        }
        write_len = fwrite(buffer, 1, read_len, imageFp);
    }
    fclose(file);
    fclose(imageFp);
}

int main(int argc, char *argv[])
{
    if (argc != 2)
    {
        fprintf(stderr, "用法: %s 目录路径\n", argv[0]);
        return 1;
    }

    const char *directory_path = argv[1];
    DIR *dir;
    struct dirent *entry;

    if ((dir = opendir(directory_path)) == NULL)
    {
        perror("无法打开目录:");
        return 1;
    }

    while ((entry = readdir(dir)) != NULL)
    {
        if (strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0)
        {
            char filepath[PATH_MAX];
            snprintf(filepath, PATH_MAX, "%s/%s", directory_path, entry->d_name);
            open_and_display_file(filepath, directory_path);
        }
    }

    closedir(dir);
    return 0;
}

相关的桌面程序在我的资源列表里面可以下载

相关推荐
牧以南歌〆1 小时前
在Ubuntu主机中修改ARM Linux开发板的根文件系统
linux·arm开发·驱动开发·ubuntu
jz_ddk2 小时前
[学习] C语言数学库函数背后的故事:`double erf(double x)`
c语言·开发语言·学习
夜月yeyue2 小时前
设计模式分析
linux·c++·stm32·单片机·嵌入式硬件
kfepiza3 小时前
Debian的`/etc/network/interfaces`的`allow-hotplug`和`auto`对比讲解 笔记250704
linux·服务器·网络·笔记·debian
无小道3 小时前
c++-引用(包括完美转发,移动构造,万能引用)
c语言·开发语言·汇编·c++
cuijiecheng20183 小时前
Ubuntu下布署mediasoup-demo
linux·运维·ubuntu
FirstFrost --sy5 小时前
数据结构之二叉树
c语言·数据结构·c++·算法·链表·深度优先·广度优先
森焱森5 小时前
垂起固定翼无人机介绍
c语言·单片机·算法·架构·无人机
独行soc5 小时前
2025年渗透测试面试题总结-2025年HW(护网面试) 33(题目+回答)
linux·科技·安全·网络安全·面试·职场和发展·护网
java龙王*6 小时前
开放端口,开通数据库连接权限,无法连接远程数据库 解决方案
linux