gpt4 book ai didi

node.js - 使用 Node.JS 创建 JPG 文件

转载 作者:太空宇宙 更新时间:2023-11-04 02:42:40 25 4
gpt4 key购买 nike

在我的 Node.js 服务器中,我正在从另一台服务器下载文件。下载的文件是经过两次Base64编码的JPG图像数据,这意味着我必须解码两次。给出的是我的代码。

var base64DecodedFileData = new Buffer(file_data, 'base64').toString('binary');
var tmp = base64DecodedFileData.split("base64,");
var base64DecodedFileData = new Buffer(tmp[1], 'base64').toString('binary');
var file = fs.createWriteStream(file_path, stream_options);
file.write(base64DecodedFileData);
file.end();

我知道我的图像数据在第一次解码时是有效的(我已经通过第二次解码在线base64解码器中验证了该数据,并且我得到了正确的图像),但是当我第二次解码它并使用该数据创建一个文件时。我没有获得有效的 JPG 文件。

我将其与实际图像进行了比较,两个文件的开头和结尾看起来都很好,但我构建的文件中有些地方不对。构建的文件也比原始文件大。

PS:我在第二次解码之前进行分割,因为第一次解码后的数据以

开始

数据:; base64,数据开始

任何想法。法鲁克·阿尔沙德。

最佳答案

我已经解决了我的问题。问题似乎出在 Node.js 的解码上,所以我编写了一个 C++ 插件来完成这项工作。这是代码。我非常确定,如果我们只对图像文件进行一次编码,问题仍然存在。

.js 文件

ModUtils.generateImageFromData(file_data, file_path);

c++ 插件:这使用来自的 base64 C++ 编码器/解码器 http://www.adp-gmbh.ch/cpp/common/base64.html

#define BUILDING_NODE_EXTENSION
#include <node.h>
#include <iostream>
#include <fstream>
#include "base64.h"

using namespace std;
using namespace v8;

static const std::string decoding_prefix =
"data:;base64,";

// --------------------------------------------------------
// Decode the image data and save it as image
// --------------------------------------------------------
Handle<Value> GenerateImageFromData(const Arguments& args) {
HandleScope scope;

// FIXME: Improve argument checking here.
// FIXME: Add error handling here.

if ( args.Length() < 2) return v8::Undefined();

Handle<Value> fileDataArg = args[0];
Handle<Value> filePathArg = args[1];
String::Utf8Value encodedData(fileDataArg);
String::Utf8Value filePath(filePathArg);
std::string std_FilePath = std::string(*filePath);

// We have received image data which is encoded with Base64 two times
// so we have to decode it twice.
std::string decoderParam = std::string(*encodedData);
std::string decodedString = base64_decode(decoderParam);

// After first decoding the data will also contains a encoding prefix like
// data:;base64,
// We have to remove this prefix to get actual encoded image data.
std::string second_pass = decodedString.substr(decoding_prefix.length(), (decodedString.length() - decoding_prefix.length()));
std::string imageData = base64_decode(second_pass);

// Write image to file
ofstream image;
image.open(std_FilePath.c_str());
image << imageData;
image.close();

return scope.Close(String::New(" "));
//return scope.Close(decoded);
}

void Init(Handle<Object> target) {

// Register all functions here
target->Set(String::NewSymbol("generateImageFromData"),
FunctionTemplate::New(GenerateImageFromData)->GetFunction());
}

NODE_MODULE(modutils, Init);

希望对其他人有帮助。

关于node.js - 使用 Node.JS 创建 JPG 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12541989/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com