mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
9 lines
175 B
JavaScript
Executable File
9 lines
175 B
JavaScript
Executable File
import fs from "fs"
|
|
import jpeg from "jpeg-js"
|
|
|
|
export default (path) => {
|
|
const buf = fs.readFileSync(path)
|
|
const pixels = jpeg.decode(buf, true)
|
|
|
|
return pixels
|
|
} |