对图片进行Base64转码和解码
Base64代码#
base64.c#
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 | #include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <fcntl.h> // bindata待编码数据buffer base64 编码后数据buffer binlength 待编码数据大小 char * base64_encode( const unsigned char * bindata, char * base64, int binlength); // base64编码字符串 bindata 解码后buffer int base64_decode( const char * base64, unsigned char * bindata); int main() { FILE * fp = NULL; unsigned int imageSize; //图片字节数 char * imageBin; char * imageBase64; char * imageOutput; size_t result; char * ret; unsigned int base64StrLength; fp = fopen ( "lena.bmp" , "rb" ); //待编码图片 if (NULL == fp) { printf ( "file open file" ); return -1; } //获取图片大小 fseek (fp, 0L, SEEK_END); imageSize = ftell (fp); fseek (fp, 0L, SEEK_SET); //分配内存存储整个图片 imageBin = ( char *) malloc ( sizeof ( char ) * imageSize); if (NULL == imageBin) { printf ( "malloc failed" ); return -1; } //读取图片 result = fread (imageBin, 1, imageSize, fp); if (result != imageSize) { printf ( "file read failed" ); return -1; } fclose (fp); //分配编码后图片所在buffer imageBase64 = ( char *) malloc ( sizeof ( char ) * imageSize * 2); //因为编码一版会比源数据大1/3的样子,这里直接申请源文件一倍的空间 if (NULL == imageBase64) { printf ( "malloc failed" ); return -1; } //base64编码 base64_encode(imageBin, imageBase64, imageSize); base64StrLength = strlen (imageBase64); printf ( "base64 str length:%d\n" , base64StrLength); printf ( "将图片读入out.txt中\n" ); //分配存储解码数据buffer imageOutput = ( char *) malloc ( sizeof ( char ) * imageSize); //解码后应该和源图片大小一致 if (NULL == imageBase64) { printf ( "malloc failed" ); return -1; } base64_decode(imageBase64, imageOutput); fp = fopen ( "output.bmp" , "wb" ); if (NULL == fp) { printf ( "file open file" ); return -1; } fwrite (imageOutput, 1, imageSize, fp); fclose (fp); free (imageBin); free (imageBase64); free (imageOutput); return 0; } const char * base64char = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" ; char * base64_encode( const unsigned char * bindata, char * base64, int binlength) { int i, j; unsigned char current; for (i = 0, j = 0; i < binlength; i += 3) { current = (bindata[i] >> 2); current &= (unsigned char )0x3F; base64[j++] = base64char[( int )current]; current = ((unsigned char )(bindata[i] << 4)) & ((unsigned char )0x30); if (i + 1 >= binlength) { base64[j++] = base64char[( int )current]; base64[j++] = '=' ; base64[j++] = '=' ; break ; } current |= ((unsigned char )(bindata[i + 1] >> 4)) & ((unsigned char )0x0F); base64[j++] = base64char[( int )current]; current = ((unsigned char )(bindata[i + 1] << 2)) & ((unsigned char )0x3C); if (i + 2 >= binlength) { base64[j++] = base64char[( int )current]; base64[j++] = '=' ; break ; } current |= ((unsigned char )(bindata[i + 2] >> 6)) & ((unsigned char )0x03); base64[j++] = base64char[( int )current]; current = ((unsigned char )bindata[i + 2]) & ((unsigned char )0x3F); base64[j++] = base64char[( int )current]; } base64[j] = '\0' ; return 0; } int base64_decode( const char * base64, unsigned char * bindata) { int i, j; unsigned char k; unsigned char temp[4]; for (i = 0, j = 0; base64[i] != '\0' ; i += 4) { memset (temp, 0xFF, sizeof (temp)); for (k = 0; k < 64; k++) { if (base64char[k] == base64[i]) temp[0] = k; } for (k = 0; k < 64; k++) { if (base64char[k] == base64[i + 1]) temp[1] = k; } for (k = 0; k < 64; k++) { if (base64char[k] == base64[i + 2]) temp[2] = k; } for (k = 0; k < 64; k++) { if (base64char[k] == base64[i + 3]) temp[3] = k; } bindata[j++] = ((unsigned char )(((unsigned char )(temp[0] << 2)) & 0xFC)) | ((unsigned char )((unsigned char )(temp[1] >> 4) & 0x03)); if (base64[i + 2] == '=' ) break ; bindata[j++] = ((unsigned char )(((unsigned char )(temp[1] << 4)) & 0xF0)) | ((unsigned char )((unsigned char )(temp[2] >> 2) & 0x0F)); if (base64[i + 3] == '=' ) break ; bindata[j++] = ((unsigned char )(((unsigned char )(temp[2] << 6)) & 0xF0)) | ((unsigned char )(temp[3] & 0x3F)); } return j; } |
unistd.h #
1 2 3 4 5 6 7 8 9 | #pragma once /** This file is part of the Mingw32 package. unistd.h maps (roughly) to io.h */ #ifndef _UNISTD_H #define _UNISTD_H #include <io.h> #include <process.h> #endif /* _UNISTD_H */ |
将Base64编码存于文件中#
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | #include <stdlib.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <fcntl.h> // bindata待编码数据buffer base64 编码后数据buffer binlength 待编码数据大小 char * base64_encode( const unsigned char * bindata, char * base64, int binlength); // base64编码字符串 bindata 解码后buffer int base64_decode( const char * base64, unsigned char * bindata); int main() { FILE * fp = NULL; unsigned int imageSize; //图片字节数 char * imageBin; char * imageBase64; char * imageOutput; size_t result; char * ret; unsigned int base64StrLength; fp = fopen ( "lena.bmp" , "rb" ); //待编码图片 if (NULL == fp) { printf ( "file open file" ); return -1; } //获取图片大小 fseek (fp, 0L, SEEK_END); imageSize = ftell (fp); fseek (fp, 0L, SEEK_SET); //分配内存存储整个图片 imageBin = ( char *) malloc ( sizeof ( char ) * imageSize); if (NULL == imageBin) { printf ( "malloc failed" ); return -1; } //读取图片 result = fread (imageBin, 1, imageSize, fp); if (result != imageSize) { printf ( "file read failed" ); return -1; } fclose (fp); //分配编码后图片所在buffer imageBase64 = ( char *) malloc ( sizeof ( char ) * imageSize * 2); //因为编码一版会比源数据大1/3的样子,这里直接申请源文件一倍的空间 if (NULL == imageBase64) { printf ( "malloc failed" ); return -1; } //base64编码 base64_encode(imageBin, imageBase64, imageSize); base64StrLength = strlen (imageBase64); printf ( "base64 str length:%d\n" , base64StrLength); printf ( "将图片读入out.txt中\n" ); FILE * file = fopen ( "out.txt" , "wb" ); if (file == NULL) { printf ( "Error!" ); exit (1); } //将Base64编码写入文件 int i = 0; while (imageBase64[i] != NULL) { fputc (imageBase64[i++], file); } fclose (file); //分配存储解码数据buffer imageOutput = ( char *) malloc ( sizeof ( char ) * imageSize); //解码后应该和源图片大小一致 if (NULL == imageBase64) { printf ( "malloc failed" ); return -1; } base64_decode(imageBase64, imageOutput); fp = fopen ( "output.bmp" , "wb" ); if (NULL == fp) { printf ( "file open file" ); return -1; } fwrite (imageOutput, 1, imageSize, fp); fclose (fp); free (imageBin); free (imageBase64); free (imageOutput); return 0; } const char * base64char = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" ; char * base64_encode( const unsigned char * bindata, char * base64, int binlength) { int i, j; unsigned char current; for (i = 0, j = 0; i < binlength; i += 3) { current = (bindata[i] >> 2); current &= (unsigned char )0x3F; base64[j++] = base64char[( int )current]; current = ((unsigned char )(bindata[i] << 4)) & ((unsigned char )0x30); if (i + 1 >= binlength) { base64[j++] = base64char[( int )current]; base64[j++] = '=' ; base64[j++] = '=' ; break ; } current |= ((unsigned char )(bindata[i + 1] >> 4)) & ((unsigned char )0x0F); base64[j++] = base64char[( int )current]; current = ((unsigned char )(bindata[i + 1] << 2)) & ((unsigned char )0x3C); if (i + 2 >= binlength) { base64[j++] = base64char[( int )current]; base64[j++] = '=' ; break ; } current |= ((unsigned char )(bindata[i + 2] >> 6)) & ((unsigned char )0x03); base64[j++] = base64char[( int )current]; current = ((unsigned char )bindata[i + 2]) & ((unsigned char )0x3F); base64[j++] = base64char[( int )current]; } base64[j] = '\0' ; return 0; } int base64_decode( const char * base64, unsigned char * bindata) { int i, j; unsigned char k; unsigned char temp[4]; for (i = 0, j = 0; base64[i] != '\0' ; i += 4) { memset (temp, 0xFF, sizeof (temp)); for (k = 0; k < 64; k++) { if (base64char[k] == base64[i]) temp[0] = k; } for (k = 0; k < 64; k++) { if (base64char[k] == base64[i + 1]) temp[1] = k; } for (k = 0; k < 64; k++) { if (base64char[k] == base64[i + 2]) temp[2] = k; } for (k = 0; k < 64; k++) { if (base64char[k] == base64[i + 3]) temp[3] = k; } bindata[j++] = ((unsigned char )(((unsigned char )(temp[0] << 2)) & 0xFC)) | ((unsigned char )((unsigned char )(temp[1] >> 4) & 0x03)); if (base64[i + 2] == '=' ) break ; bindata[j++] = ((unsigned char )(((unsigned char )(temp[1] << 4)) & 0xF0)) | ((unsigned char )((unsigned char )(temp[2] >> 2) & 0x0F)); if (base64[i + 3] == '=' ) break ; bindata[j++] = ((unsigned char )(((unsigned char )(temp[2] << 6)) & 0xF0)) | ((unsigned char )(temp[3] & 0x3F)); } return j; } |
作者:Hang Shao
出处:https://www.cnblogs.com/pam-sh/p/14008284.html
版权:本作品采用「知识共享」许可协议进行许可。
声明:欢迎交流! 原文链接 ,如有问题,可邮件(mir_soh@163.com)咨询.
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)