gpt4 book ai didi

node.js - 在 csv/xlsx 文件中写入图像的正确方法是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 00:36:38 24 4
gpt4 key购买 nike

我正在尝试将图像写入 csv 文件。脚本写入文件,但图像内容困惑。����\u0000\u0010JFIF\u0000\u0001\u0001 的长序列。有人可以指出我在编码中缺少什么或者我应该做其他事情吗?

测试:mkdir so-38711430; cd so-38711430; npm 初始化 -y; npm i -S lodash json2csv;

'use strict';

const _ = require('lodash');
const json2csv = require('json2csv');
const fs = require('fs');

let rows = [
{
'id': 1,
'name': '12323',
},
{
'id': 2,
'name': '22323',
},
{
'id': 3,
'name': '323232',
},
{
'id': 4,
'name': '24242',
},
];

// image path is valid
fs.readFile(`./images/2NTSFr7.jpg`, 'utf-8', (err, data) => {
_.each(rows, (item) => {
item.image = data;
});

json2csv({
'data': rows
}, (err, csv) => {
fs.writeFile('file.csv', csv, (err) => {
if (err) throw err;

console.log('file saved');
});
});
});

最佳答案

这取决于您呈现 CSV/XLSX 文档的方式。

在 CSV 中,如果您在记事本中打开文档,显然您不会看到图像。记事本不会呈现图像,只会呈现文本。正如其他人所说,您可以将其以 base64 字符串写入 CSV,例如使用 node-base64-imagejQuery-CSV :

import {encode, decode} from 'node-base64-image'; // ES6

// Get the image as base64 string
var base64string = encode("path/to/img");

// Create an arrays object, to convert to CSV
// Note this is an array of arrays. E.g.,
// For an array:
// array = [ "a", "b", "c" ],
// you get the third element by doing:
// array[2] ( = "c" )
//
// So, for an array of arrays, i.e., 3 arrays containing 3 elements each:
// arrayOfArrays = [ [ "a", "b", "c" ],[ "d", "e", "f" ], [ "g", "h", "i" ] ]
// you get the third element by doing (as above):
// array[2] ( = [ "g", "h", "i" ] )
// and the third element of the selected array by doing:
// array[2][2] ( = "i" )
var csvArrays = [
[ "Image Name", "Image base64 Data" ], // Example titles row
[ "name-for-image", base64string ], // Example data row
];

// Convert arrays to CSV
var csvData = $.csv.fromArrays(csvArrays);

// Write the file!
fs.writeFile('csvFile.csv', csvData, (err) => {
if (err) throw err;
console.log('It\'s saved!');
});

编辑:然后从 CSV 文件中对其进行解码,我们可以获得之前保存的 CSV 文件:

import {encode, decode} from 'node-base64-image'; // ES6

var csvFile = fs.readFile('csvFile.csv');
var csvDataAsArrays = $.csv.toArrays(csvFile);

// Get the second array from the group of arrays, then the second element from that array, hence `[1][1]`
var csvImgAsBase64 = csvDataAsArrays[1][1];
var imgAsData = decode(csvImgAsBase64);

fs.writeFile("img.jpeg", imgData, function() {
if (err) throw err;
console.log('It\'s saved!');
}

在 XLSX 中,您可以根据需要插入图像,然后在 Excel 中打开工作簿来查看图像。以下是如何使用 Excel for Node 执行此操作封装:

ws.addImage({
path: './screenshot2.jpeg',
type: 'picture',
position: {
type: 'absoluteAnchor',
x: '1in',
y: '2in'
}
});

您还可以相对于单元格定位它:

ws.addImage({
path: './screenshot1.png',
type: 'picture',
position: {
type: 'twoCellAnchor',
from: {
col: 1,
colOff: 0,
row: 10,
rowOff: 0
},
to: {
col: 4,
colOff: 0,
row: 13,
rowOff: 0
}
}
});

关于node.js - 在 csv/xlsx 文件中写入图像的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38711430/

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