├── .gitignore ├── LICENSE ├── PCRT.py ├── README.md ├── README_fr.md └── examples ├── 0707.png ├── IHDR.png ├── append.png ├── corrupt.png └── new.bin /.gitignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/LICENSE -------------------------------------------------------------------------------- /PCRT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/PCRT.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/README.md -------------------------------------------------------------------------------- /README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/README_fr.md -------------------------------------------------------------------------------- /examples/0707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/examples/0707.png -------------------------------------------------------------------------------- /examples/IHDR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/examples/IHDR.png -------------------------------------------------------------------------------- /examples/append.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/examples/append.png -------------------------------------------------------------------------------- /examples/corrupt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/examples/corrupt.png -------------------------------------------------------------------------------- /examples/new.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlly/PCRT/HEAD/examples/new.bin --------------------------------------------------------------------------------