Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-20T05:15:45.000Z (about 1 year ago)
- Last Synced: 2023-11-20T06:26:50.096Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://mikuauahdark.github.io/rime/
- Size: 1.57 MB
- Stars: 7
- Watchers: 1
- 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.