libragephoto/src/dotnet
Syping 728a3dff6c libragephoto 0.8.1 release
- CMakeLists.txt: update version to 0.8.1
- doc: depend on CMake >= 3.16
- ragephoto-gtkviewer: depend on CMake >= 3.16 and ragephoto >= 0.8
- ragephoto-qtviewer: depend on CMake >= 3.16 and ragephoto >= 0.8
- src/dotnet: update version to 0.8.1
2025-11-11 19:22:47 +01:00
..
net47 libragephoto 0.8.0 release 2025-11-10 17:58:06 +01:00
RagePhoto.Core.csproj libragephoto 0.8.1 release 2025-11-11 19:22:47 +01:00
RagePhoto.Core.sln libragephoto: move to 0.7.0 version and other changes 2025-10-23 01:16:47 +02:00
RagePhoto.cs libragephoto 0.8.0 release 2025-11-10 17:58:06 +01:00
RagePhotoException.cs libragephoto 0.8.0 release 2025-11-10 17:58:06 +01:00
RagePhotoTypes.cs libragephoto 0.7.0 release 2025-10-23 02:20:17 +02:00
README.md libragephoto 0.8.0 release 2025-11-10 17:58:06 +01:00

RagePhoto.Core

Open Source RAGE Photo Parser for GTA V and RDR 2

  • Read/Write RAGE Photos error free and correct
  • Support for metadata stored in RAGE Photos
  • Simple .NET API
  • Based on libragephoto

How to Use RagePhoto.Core

using RagePhoto;

/* Get Image from Photo */
static Image GetImageFromPhoto(String inputFile) {
    using Photo photo = new();
    photo.LoadFile(inputFile);
    using MemoryStream jpegStream = new(photo.Jpeg);
    return Image.FromStream(jpegStream);
}