gpt4 book ai didi

javascript - 从 Firebase 存储获取图像并放入 PDF

转载 作者:行者123 更新时间:2023-12-02 23:37:55 26 4
gpt4 key购买 nike

所以我是 PDF 工具包的新手,对 Javascript 有基本的了解,但我似乎无法弄清楚如何将 Firebase Storage 中的图像放入 PDF 中,或者是否有办法使用 GCF 存储该图像并将其放入 PDF 中。我正在使用 Google Cloud Functions 和 Node.js 生成 PDF,下面是我到目前为止所得到的:

exports.pdf = functions.https.onRequest((request,response)=>{
//Create a document
const PDFDocument = require('pdfkit');
const doc = new PDFDocument();
const storageBucket = admin.storage().bucket();
const logo = g
generateHeader(doc);
// Pipe its output somewhere, like to a file or HTTP response
// See below for browser usage

// Embed a font, set the font size, and render some text
doc.font('Courier')
.fontSize(15)
.text('Some text with an embedded font!', 100, 100);

// Add an image, constrain it to a given size, and center it vertically and horizontally
// doc.image('https://firebasestorage.googleapis.com/v0/b/redog-bf9c8.appspot.com/o/pdfresource%2Fsplash.png?alt=media&token=25028ea2-5085-4782-9038-88b694b69f50', {
// fit: [250, 300],
// align: 'center',
// valign: 'center'
// });

// Add another page
doc.addPage()
.fontSize(25)
.text('Here is some vector graphics...', 100, 100);

// Draw a triangle
doc.save()
.moveTo(100, 150)
.lineTo(100, 250)
.lineTo(200, 250)
.fill("#FF3300");

// Apply some transforms and render an SVG path with the 'even-odd' fill rule
doc.scale(0.6)
.translate(470, -380)
.path('M 250,75 L 323,301 131,161 369,161 177,301 z')
.fill('red', 'even-odd')
.restore();

// Add some text with annotations
doc.addPage()
.fillColor("blue")
.text('Here is a link!', 100, 100)
.underline(100, 100, 160, 27, {color: "#0000FF"})
.link(100, 100, 160, 27, 'http://google.com/');

// Finalize PDF file
const myPdfFile = admin.storage().bucket().file('/test/Arbeitsvertrag.pdf');
const stream = doc.pipe(myPdfFile.createWriteStream());
doc.end();
});

function generateHeader(doc) {
doc
.image("storage/pdfresource/splash.png", 50, 45, { width: 50 })
.fillColor("#444444")
.fontSize(20)
.text("ACME Inc.", 110, 57)
.fontSize(10)
.text("123 Main Street", 200, 65, { align: "right" })
.text("New York, NY, 10025", 200, 80, { align: "right" })
.moveDown();
}

我遇到的问题是在GenerateHeader函数中...它一直找不到文件...有人知道我如何将它指向正确的方向吗?

最佳答案

我没有完全回答您的问题,但如果您想在 PDF 中嵌入静态图像(例如公司 Logo ),这里有一个解决方案。

您可以将图像存储在 functions 文件夹下的文件夹中,并在 Cloud Function 代码中调用它。

例如,在 IDE 中,在 functions 文件夹下创建一个文件夹 images,在此文件夹下添加图像 splash.png,然后在您的代码中按如下方式调用图像:

  doc
.image('./images/splash.png', 50, 45, { width: 50 })
.fillColor('#444444')
....

然后重新部署云功能,它应该可以解决问题。

关于javascript - 从 Firebase 存储获取图像并放入 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56209458/

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