Live WebXR demo
https://companion.benetou.fr/index.html
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
387 B
10 lines
387 B
const {execSync} = require('child_process')
|
|
|
|
function convert( filename, pages ){
|
|
console.log(pages)
|
|
if (filename.endsWith('.pdf')) {
|
|
execSync( 'montage -font /usr/share/fonts/noto/NotoSansSymbols-Regular.ttf -geometry +0+0 -tile 5x '+pages.map( p => filename+'-'+p+'.jpg').join(' ')+' ./saved/montages/'+filename+'montage.jpg', {cwd:'public'})
|
|
}
|
|
}
|
|
|
|
module.exports.convert = convert
|
|
|