目录

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;
}

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

本文是转载文章,点击查看原文
如有侵权,请联系 xyy@jishuzhan.net 删除
相关推荐
JohnYan8 分钟前
工作笔记 - PHP系统升级到7.4
linux·后端·php
刘若水39 分钟前
Linux : 页表
linux·运维·服务器
Net_Walke1 小时前
【C语言】container_of 宏定义
c语言
niuTaylor1 小时前
嵌入式Linux驱动开发基础知识(三)
linux·运维·驱动开发
清源妙木真菌1 小时前
Linux:页表详解(虚拟地址到物理地址转换过程)
linux·性能优化·内存管理
高峰聚焦1 小时前
Linux 系统管理综合实训 —— 基于 NAT 模式的多 IP 配置、Nginx 服务部署及存储管理
linux·tcp/ip·nginx
jelasin1 小时前
Linux Kernel list 移植优化
c语言
逐光猴1 小时前
docker 配置harbor 非https访问(http server give HTTP response to HTTPS client)
linux·docker·容器
多多*1 小时前
2024第十五届蓝桥杯大赛软件赛省赛Java大学B组 报数游戏 类斐波那契循环数 分布式队列 食堂 最优分组 星际旅行 LITS游戏 拼十字
java·linux·stm32·单片机·嵌入式硬件·spring·eclipse
逆鱼_041 小时前
ARM-UART
linux·运维·arm开发