2

我正在做服务器端编码,想将文件扩展名转换为 pdf 扩展名,它应该保存在 S3 中。任何建议都会很有价值。我是这个领域的初学者,如果这个问题冒犯了任何人,我深表歉意。

上传文件:(文件,bucketName,路径)=>{

 return new Promise(async function(resolve, reject) {
   var doc = new PDFDocument()
   var file = files[0];
      let filename = file.originalFilename;
      var file_path =  file.path;

      doc.image(file_path, {
       fit: [250, 300],
       align: 'center',
       valign: 'center'
   });
   //doc.y = 300
 //doc.pipe(res)
  //  console.log('img',img);

   var path = 'images/'+ file.originalFilename;

 console.log( 'path',path);
   var path = await uploadFiles(file, bucketName, path);
     resolve(path);
     //doc.end()
 });
 }
 };
4

1 回答 1

0

试试看这个例子。在将 PDF 上传到存储桶之前,您可能需要将其保存在磁盘上。还可以尝试将 X 和 Y 位置添加到图像将放置在 PDF 上的位置。

router.route('/generate.pdf')
     .post(multiparty(), function(req,res,next){


 // Creates a new instace of a Pdf Document Model
 var pdfDocument = new PdfDocument(req.body);

 // New Instance of the PDFKit PDFDOCUMENT
 var pdf = new PDFDocument({
     size: 'LETTER',
     info: {
        Title: 'title',
         Author: 'me',
     }
 });

 // Top Logo
 pdf.image('./logo.jpg', 500, 35, {width: 60});

 // Document Top Title
 pdf.fontSize(14).text('Some Title', {
     align: 'center' });

 var fileName = 'some.pdf';

 // Stream contents to a file
 pdf.pipe(fs.createWriteStream(fileName))
    .on('finish', function () {
        console.log('PDF closed');

    });

    // Close PDF and write file.
    pdf.pipe(res);
    pdf.end();   
});
于 2018-02-21T11:05:00.940 回答