gpt4 book ai didi

jquery - 使用 node-webkit 打开 .pdf

转载 作者:行者123 更新时间:2023-12-01 00:56:28 26 4
gpt4 key购买 nike

我想知道如何在我的操作系统中使用 Node-Webkit 和 PDFKIT 打开 .pdf 文件。

Node-Webkit 应用程序在项目的根目录下创建 .pdf,我只想打开并打印它...

var pdf = require('pdfkit');
var fs = require('fs');

( function($){

$(document).ready( function(){

$('#form-quote').on('submit', function(e){

e.preventDefault();

var doc = new pdf();

doc.pipe(fs.createWriteStream('quote.pdf'));
doc.fontSize(20).text("test", 50, 400);

doc.end();

// Open the .pdf here using the operating system of the user

});

});

})(jQuery);

最佳答案

按如下方式使用 Shell 组件:

// Load native UI library.
var gui = require('nw.gui');

// Open URL with default browser.
gui.Shell.openExternal('https://github.com/rogerwang/node-webkit');

// Open a text file with default viewer.
gui.Shell.openItem('quote.pdf');

// Open a file in file explorer.
gui.Shell.showItemInFolder('quote.pdf');

查看对应的Node-Webkit reference了解更多信息。

关于jquery - 使用 node-webkit 打开 .pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24782130/

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