-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
51 lines (43 loc) · 1.61 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const fs = require('fs')
const heicConvert = require('heic-convert')
const path = require('path')
const ffmpeg = require('fluent-ffmpeg')
// Function to convert HEIC to JPG
async function convertHeicToJpg(heicFilePath, jpgFilePath) {
try {
const inputBuffer = fs.readFileSync(heicFilePath)
const outputBuffer = await heicConvert({
buffer: inputBuffer, // the HEIC file buffer
format: 'JPEG', // output format
quality: 1, // quality of the output image (0 to 1)
})
fs.writeFileSync(jpgFilePath, outputBuffer) // write the JPG file
console.log(`Converted ${heicFilePath} to ${jpgFilePath}`)
} catch (error) {
console.error('Error converting file:', error)
}
}
// Example usage
// const heicFilePath = './public/static/images/malaysia/IMG_9975.HEIC' // replace with your HEIC file path
// const jpgFilePath = './public/static/images/malaysia/IMG_9975.jpg' // replace with desired JPG file path
// convertHeicToJpg(heicFilePath, jpgFilePath)
// Function to get image paths from a directory
const getImagePaths = (dir) => {
const images = []
// Read the directory
fs.readdirSync(dir).forEach((file) => {
const filePath = path.join(dir, file)
const stat = fs.statSync(filePath)
// Check if the file is an image
if (stat.isFile() && /\.(jpg|jpeg|png|gif|bmp|svg)$/.test(file)) {
images.push({
src: filePath.replace(/^public/, ''),
alt: path.basename(file, path.extname(file)), // Use the file name as alt text
})
}
})
return images
}
// Example usage
const imagePaths = getImagePaths('./public/static/images/malaysia')
console.log(imagePaths)