如何在C中将图像转换为base64? [英] How to Convert Image to base64 in C?

查看:71
本文介绍了如何在C中将图像转换为base64?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要将JPG图像转换为BASE64,才能将其插入到Cassandra集群中,所有这些都用C语言实现,我发现了这个

I need to convert a JPG image to BASE64 to insertit into a Cassandra Cluster, all that in C, i found this How do I base64 encode (decode) in C? but it seemes to segmentation fault if i Try to put the result of a fRead on the Image, (Non-printable caracters seems to make the problem)

/* ----------------------------------------------------------------------------------Includes DO NOT MODIFY---------------------------------------------------------------------------------------------- */

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include "cassandra.h"
#include "../headers/other.h"

size_t fileLen;
/* ---------------------------------------------------------------------------------------CONFIG HERE !---------------------------------------------------------------------------------------------------*/

/*                                                                                ---------Connection----------                                                                                           */

const char *server_adress = "127.0.0.1"; /* Insert your server adress here */

const char *keyframe = "hallo"; /* Insert name of the table you want to insert your data into (Must be created) */

const char *table = "blobi"; /* Insert name of the table you want to insert your data into (Must be created) */

const char *column_name1 = "file_name"; /* Insert name of the column for the key input */
const char *column_name2 = "content"; /* Insert name of the column for the blob input */

/*                                                                                ------------Data-------------                                                                                           */

const char *file_path = "/home/nicolas/Pictures/Minions.jpg"; /* Insert the name of the binary to read and input into your table (changes coming soon !) */

/* -------------------------------------------------------------------------------Do not modify beyond this point ----------------------------------------------------------------------------------------*/

void ReadFile(const char *name)
{
  FILE *file;
  unsigned char *buffer;
  char *lobi;

  //Open file                                                                                                                                                                                                
  file = fopen(name , "rb");
  if (!file)
    {
      fprintf(stderr, "Unable to open file %s", name);
      return;
    }

  //Get file length                                                                                                                                                                                          
  fseek(file, 0, SEEK_END);
  fileLen=ftell(file);
  fseek(file, 0, SEEK_SET);

  //Allocate memory                                                                                                                                                                                          
  buffer=(char *)malloc(fileLen+1);
  if (!buffer)
    {
      fprintf(stderr, "Memory error!");
      fclose(file);
      return;
    }

  //Read file contents into buffer                                                                                                                                                                           
  fread(buffer, fileLen, 1, file);
  size_t *output_length;
  lobi = base64_encode(buffer, fileLen, output_length);
  printf("%s\n", lobi);
  fclose(file);
  insert_blob(buffer);
  free(buffer);
}

这是base64.c

And here is base64.c

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

static char encoding_table[] = {'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
                                'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
                                'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
                                'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
                                'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
                                'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
                                'w', 'x', 'y', 'z', '0', '1', '2', '3',
                                '4', '5', '6', '7', '8', '9', '+', '/'};
static char *decoding_table = NULL;
static int mod_table[] = {0, 2, 1};

void build_decoding_table() {

  decoding_table = malloc(256);

  for (int i = 0; i < 64; i++)
    decoding_table[(unsigned char) encoding_table[i]] = i;
}

char *base64_encode(const unsigned char *data,
                    size_t input_length,
                    size_t *output_length) {

  *output_length = 4 * ((input_length + 2) / 3);

  char *encoded_data = malloc(*output_length);
  if (encoded_data == NULL) return NULL;

  for (int i = 0, j = 0; i < input_length;) {

    uint32_t octet_a = i < input_length ? (unsigned char)data[i++] : 0;
    uint32_t octet_b = i < input_length ? (unsigned char)data[i++] : 0;
    uint32_t octet_c = i < input_length ? (unsigned char)data[i++] : 0;

    uint32_t triple = (octet_a << 0x10) + (octet_b << 0x08) + octet_c;

    encoded_data[j++] = encoding_table[(triple >> 3 * 6) & 0x3F];
    encoded_data[j++] = encoding_table[(triple >> 2 * 6) & 0x3F];
    encoded_data[j++] = encoding_table[(triple >> 1 * 6) & 0x3F];
    encoded_data[j++] = encoding_table[(triple >> 0 * 6) & 0x3F];
  }

  for (int i = 0; i < mod_table[input_length % 3]; i++)
    encoded_data[*output_length - 1 - i] = '=';

  return encoded_data;
}

您有任何建议或我可以用来做的lib吗?

HAve you got any advice or lib I can use to do this ?

此处是gdb的回溯记录:

here the backtrace on gdb :

#0  0x00000000004013e4 in base64_encode (data=0x604960 "\377\330\377", <incomplete sequence \340>, input_length=55605, output_length=0x401e20 <__libc_csu_init>) at sources/base64.c:30

#1  0x0000000000401a45 in ReadFile (name=0x401ed0 "/home/nicolas/Pictures/Minions.jpg") at sources/blob_test.c:81

#2  0x0000000000401b2e in main () at sources/blob_test.c:110

提前谢谢!

推荐答案

这是错误的:

size_t *output_length; // declared an indeterminate pointer
lobi = base64_encode(buffer, fileLen, output_length); // sends bogus address

应该是

size_t output_length = 0; // note *NOT* a pointer
lobi = base64_encode(buffer, fileLen, &output_length); // note address-of operator

这篇关于如何在C中将图像转换为base64?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆