RAGE Photo CLI based on libragephoto
Find a file
2025-11-04 04:10:00 +01:00
Properties use a empty jpeg instead of a null byte 2025-10-24 15:57:09 +02:00
Resources use a empty jpeg instead of a null byte 2025-10-24 15:57:09 +02:00
.gitattributes Add .gitattributes, .gitignore, and LICENSE.txt. 2025-10-23 18:16:29 +02:00
.gitignore Add .gitattributes, .gitignore, and LICENSE.txt. 2025-10-23 18:16:29 +02:00
Commands.cs split code to Commands class and Json class 2025-11-04 04:10:00 +01:00
Json.cs split code to Commands class and Json class 2025-11-04 04:10:00 +01:00
LICENSE.txt update LICENSE.txt 2025-10-31 04:47:59 +01:00
Program.cs split code to Commands class and Json class 2025-11-04 04:10:00 +01:00
ragephoto-cli.csproj add more information to project file 2025-10-31 04:48:12 +01:00
ragephoto-cli.sln add support for description and ability to delete jpeg 2025-10-24 15:29:09 +02:00
README.md update README.md 2025-10-29 04:35:09 +01:00

ragephoto-cli

Open Source RAGE Photo CLI based on libragephoto

  • Read/Write RAGE Photos with get/set commands
  • Support for stdin/stdout in input/output and JPEG option

Build ragephoto-cli

git clone https://github.com/Syping/ragephoto-cli
dotnet publish -c Release ragephoto-cli

How to Use ragephoto-cli

# Exporting JPEG
ragephoto-cli get "$INPUT" --output "photo.jpg"

# Getting Format
ragephoto-cli get "$INPUT" format

# Getting JSON
ragephoto-cli get "$INPUT" json

# Getting Title
ragephoto-cli get "$INPUT" title

# Replacing JPEG
ragephoto-cli set "$INPUT" --jpeg "photo.jpg"

# Replacing JSON
ragephoto-cli set "$INPUT" --json "$JSON"

# Patching Signature
ragephoto-cli set "$INPUT" --update-sign

# Updating Title
ragephoto-cli set "$INPUT" --title "$TITLE"