https://github.com/mikuauahdark/rime
Read & Remove Image Metadata
https://github.com/mikuauahdark/rime
Last synced: 3 months ago
JSON representation
Read & Remove Image Metadata
- Host: GitHub
- URL: https://github.com/mikuauahdark/rime
- Owner: MikuAuahDark
- License: mit
- Created: 2023-06-21T06:55:48.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-11-20T05:15:45.000Z (over 1 year ago)
- Last Synced: 2025-03-26T03:41:43.320Z (3 months ago)
- Language: JavaScript
- Homepage: https://mikuauahdark.github.io/rime/
- Size: 1.57 MB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
RIME
=====An Image Metadata Reader and Remover that performs everything in your browser.
This is the mainline version with latest bugfix and features. All pull requests should go into this branch unless
asked otherwise.Usage (Browser)
-----Main source: `index.html`.
https://MikuAuahDark.github.io/rime/index.html
Usage (Node.js)
-----Example
```js
import * as process from "node:process"
import * as fs from "node:fs"
import { loadMetadata } from "./rime-mod/main.mjs"if (process.argv.length < 3) {
console.log("usage: %s %s ", process.argv[0], process.argv[1])
process.exit(1)
}const imageFile = fs.readFileSync(process.argv[2])
const metadata = loadMetadata(new Uint8Array(imageFile))
console.log(metadata.getMetadata())
```License
-----MIT.