├── .editorconfig ├── C Library ├── examples │ ├── Arduino │ │ └── arduino_pif │ │ │ ├── IMG_20220508_030100.jpg │ │ │ ├── arduino.h │ │ │ ├── arduino_logo.png │ │ │ ├── arduino_pif.ino │ │ │ ├── hackaday.h │ │ │ ├── hackaday.png │ │ │ ├── pifdec.c │ │ │ └── pifdec.h │ ├── GD32VF_epaper │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── README.md │ │ ├── img │ │ │ ├── colorpattern.jpg │ │ │ └── reddead.jpg │ │ ├── include │ │ │ ├── README │ │ │ ├── main.h │ │ │ └── redpaz.h │ │ ├── lib │ │ │ ├── README │ │ │ ├── eink │ │ │ │ ├── spd1656.c │ │ │ │ └── spd1656.h │ │ │ ├── gfc32vf103_spi │ │ │ │ ├── gfc32vf103_spi.c │ │ │ │ └── gfc32vf103_spi.h │ │ │ └── pifdec │ │ │ │ ├── pifdec.c │ │ │ │ └── pifdec.h │ │ ├── platformio.ini │ │ ├── src │ │ │ ├── main.c │ │ │ └── system_gd32vf103.c │ │ └── test │ │ │ └── README │ ├── PIFtestENV │ │ ├── Debug │ │ │ ├── Makefile │ │ │ ├── PIFtestENV.eep │ │ │ ├── PIFtestENV.elf │ │ │ ├── PIFtestENV.hex │ │ │ ├── PIFtestENV.lss │ │ │ ├── PIFtestENV.map │ │ │ ├── PIFtestENV.srec │ │ │ ├── card_mcu.d │ │ │ ├── card_mcu.o │ │ │ ├── hw_test_03.eep │ │ │ ├── hw_test_03.elf │ │ │ ├── hw_test_03.hex │ │ │ ├── hw_test_03.lss │ │ │ ├── hw_test_03.map │ │ │ ├── hw_test_03.srec │ │ │ ├── icdriver │ │ │ │ ├── RA8876 │ │ │ │ │ ├── RA8876.d │ │ │ │ │ ├── RA8876.o │ │ │ │ │ ├── RA8876_cursors.d │ │ │ │ │ ├── RA8876_cursors.o │ │ │ │ │ ├── main.d │ │ │ │ │ ├── main.o │ │ │ │ │ ├── touch.d │ │ │ │ │ └── touch.o │ │ │ │ ├── RTC-RV3028 │ │ │ │ │ ├── rtc_rv3028.d │ │ │ │ │ └── rtc_rv3028.o │ │ │ │ ├── mcp23.d │ │ │ │ ├── mcp23.o │ │ │ │ └── spiflash │ │ │ │ │ ├── spiflash.d │ │ │ │ │ └── spiflash.o │ │ │ ├── lowlevel │ │ │ │ ├── gesiFramework.d │ │ │ │ ├── gesiFramework.o │ │ │ │ ├── hwSPI.d │ │ │ │ ├── hwSPI.o │ │ │ │ ├── twi_master_driver.d │ │ │ │ ├── twi_master_driver.o │ │ │ │ ├── xmegaUARTSPI │ │ │ │ │ ├── uartSPI.d │ │ │ │ │ └── uartSPI.o │ │ │ │ └── xmegaUSART │ │ │ │ │ ├── uart.d │ │ │ │ │ └── uart.o │ │ │ ├── main.d │ │ │ ├── main.o │ │ │ ├── makedep.mk │ │ │ ├── midlevel │ │ │ │ ├── RA8876Helper.d │ │ │ │ ├── RA8876Helper.o │ │ │ │ ├── ff.d │ │ │ │ ├── ff.o │ │ │ │ ├── file_modem │ │ │ │ │ ├── file_modem.d │ │ │ │ │ └── file_modem.o │ │ │ │ ├── flashcache.d │ │ │ │ ├── flashcache.o │ │ │ │ ├── gshell │ │ │ │ │ ├── example │ │ │ │ │ │ ├── example.d │ │ │ │ │ │ └── example.o │ │ │ │ │ ├── gshell.d │ │ │ │ │ └── gshell.o │ │ │ │ └── pifdec │ │ │ │ │ ├── pifdec.d │ │ │ │ │ └── pifdec.o │ │ │ ├── production.eep │ │ │ ├── production.elf │ │ │ ├── production.hex │ │ │ ├── production.lss │ │ │ ├── production.map │ │ │ ├── production.srec │ │ │ ├── shell_cmd.d │ │ │ └── shell_cmd.o │ │ ├── PIFtestENV.componentinfo.xml │ │ ├── PIFtestENV.cproj │ │ ├── card_mcu.c │ │ ├── icdriver │ │ │ ├── mcp23.c │ │ │ └── mcp23.h │ │ ├── image.jpg │ │ ├── io_map.h │ │ ├── lowlevel │ │ │ ├── gesiFramework.c │ │ │ ├── gesiFramework.h │ │ │ ├── hwSPI.c │ │ │ ├── hwSPI.h │ │ │ ├── twi_master_driver.c │ │ │ └── twi_master_driver.h │ │ ├── main.c │ │ ├── main.h │ │ ├── midlevel │ │ │ ├── RA8876Helper.c │ │ │ ├── RA8876Helper.h │ │ │ ├── diskio.h │ │ │ ├── ff.c │ │ │ ├── ff.h │ │ │ ├── ffconf.h │ │ │ ├── flashcache.c │ │ │ ├── flashcache.h │ │ │ └── pifdec │ │ │ │ ├── pifdec.c │ │ │ │ └── pifdec.h │ │ ├── shell_cmd.c │ │ └── shell_cmd.h │ └── README.md ├── pifdec.c └── pifdec.h ├── Image Converter ├── PIFCLI.py └── PIFGUI.py ├── Image Viewer ├── .vs │ └── PIF Viewer │ │ ├── project-colors.json │ │ └── v17 │ │ └── .suo ├── PIF Viewer.sln └── PIF Viewer │ ├── 2.ico │ ├── PIF Viewer.csproj │ ├── PIF Viewer.csproj.user │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Viewer.Designer.cs │ ├── Viewer.cs │ ├── Viewer.resx │ ├── bin │ ├── Debug │ │ ├── PIF Viewer.exe │ │ └── PIF Viewer.pdb │ └── Release │ │ ├── PIF Viewer.exe │ │ └── PIF Viewer.pdb │ └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── PIF Viewer.csproj.AssemblyReference.cache │ ├── PIF Viewer.csproj.CoreCompileInputs.cache │ ├── PIF Viewer.csproj.FileListAbsolute.txt │ ├── PIF Viewer.csproj.GenerateResource.cache │ ├── PIF Viewer.csprojAssemblyReference.cache │ ├── PIF Viewer.exe │ ├── PIF Viewer.pdb │ ├── PIF_Viewer.Properties.Resources.resources │ ├── PIF_Viewer.ViewerForm.resources │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ └── Release │ ├── PIF Viewer.csproj.AssemblyReference.cache │ ├── PIF Viewer.csproj.CoreCompileInputs.cache │ ├── PIF Viewer.csproj.FileListAbsolute.txt │ ├── PIF Viewer.csproj.GenerateResource.cache │ ├── PIF Viewer.exe │ ├── PIF Viewer.pdb │ ├── PIF_Viewer.Properties.Resources.resources │ ├── PIF_Viewer.ViewerForm.resources │ └── TempPE │ └── Properties.Resources.Designer.cs.dll ├── LICENSE.txt ├── Python Library ├── pif.py └── test_pif.py ├── README.md ├── Specification ├── PIF Format Specification.pdf └── PIF Format Specification.xlsx └── test_images ├── Lenna ├── Lenna.bmp ├── Lenna_BW.pif ├── Lenna_BW_rle.pif ├── Lenna_BW_rle_dither.pif ├── Lenna_Indexed16_RGB565.pif ├── Lenna_Indexed16_RGB565_dither.pif ├── Lenna_Indexed16_RGB565_dither_rle.pif ├── Lenna_Indexed16_RGB565_rle.pif ├── Lenna_RGB16C.pif ├── Lenna_RGB16C_rle.pif ├── Lenna_RGB16C_rle_dither.pif ├── Lenna_RGB332.pif ├── Lenna_RGB332_rle.pif ├── Lenna_RGB332_rle_dither.pif ├── Lenna_RGB565.pif ├── Lenna_RGB565_rle.pif ├── Lenna_RGB888.pif └── Lenna_RGB888_rle.pif ├── bw_testimg.png ├── bw_testing_odd.png ├── colorful ├── colorful.bmp ├── colorful_BW.pif ├── colorful_BW_rle.pif ├── colorful_RGB16C.pif ├── colorful_RGB16C_rle.pif ├── colorful_RGB332.h ├── colorful_RGB332.pif ├── colorful_RGB332_rle.pif ├── colorful_RGB565.pif ├── colorful_RGB565_rle.pif ├── colorful_RGB888.pif └── colorful_RGB888_rle.pif ├── tool_screenshot.png ├── viewer_screenshot.png └── w_testing_odd.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/.editorconfig -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/IMG_20220508_030100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/IMG_20220508_030100.jpg -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/arduino.h -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/arduino_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/arduino_logo.png -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/arduino_pif.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/arduino_pif.ino -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/hackaday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/hackaday.h -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/hackaday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/hackaday.png -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/pifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/pifdec.c -------------------------------------------------------------------------------- /C Library/examples/Arduino/arduino_pif/pifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/Arduino/arduino_pif/pifdec.h -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/.gitignore -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/.vscode/extensions.json -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/.vscode/settings.json -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/README.md -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/img/colorpattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/img/colorpattern.jpg -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/img/reddead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/img/reddead.jpg -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/include/README -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/include/main.h -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/include/redpaz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/include/redpaz.h -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/lib/README -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/lib/eink/spd1656.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/lib/eink/spd1656.c -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/lib/eink/spd1656.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/lib/eink/spd1656.h -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/lib/gfc32vf103_spi/gfc32vf103_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/lib/gfc32vf103_spi/gfc32vf103_spi.c -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/lib/gfc32vf103_spi/gfc32vf103_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/lib/gfc32vf103_spi/gfc32vf103_spi.h -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/lib/pifdec/pifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/lib/pifdec/pifdec.c -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/lib/pifdec/pifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/lib/pifdec/pifdec.h -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/platformio.ini -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/src/main.c -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/src/system_gd32vf103.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/src/system_gd32vf103.c -------------------------------------------------------------------------------- /C Library/examples/GD32VF_epaper/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/GD32VF_epaper/test/README -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/Makefile -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/PIFtestENV.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/PIFtestENV.eep -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/PIFtestENV.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/PIFtestENV.elf -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/PIFtestENV.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/PIFtestENV.hex -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/PIFtestENV.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/PIFtestENV.lss -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/PIFtestENV.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/PIFtestENV.map -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/PIFtestENV.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/PIFtestENV.srec -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/card_mcu.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/card_mcu.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/card_mcu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/card_mcu.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/hw_test_03.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/hw_test_03.eep -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/hw_test_03.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/hw_test_03.elf -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/hw_test_03.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/hw_test_03.hex -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/hw_test_03.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/hw_test_03.lss -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/hw_test_03.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/hw_test_03.map -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/hw_test_03.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/hw_test_03.srec -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876_cursors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876_cursors.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876_cursors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/RA8876_cursors.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/main.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/main.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/touch.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/touch.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RA8876/touch.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RA8876/touch.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RTC-RV3028/rtc_rv3028.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RTC-RV3028/rtc_rv3028.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/RTC-RV3028/rtc_rv3028.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/RTC-RV3028/rtc_rv3028.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/mcp23.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/mcp23.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/mcp23.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/mcp23.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/spiflash/spiflash.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/spiflash/spiflash.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/icdriver/spiflash/spiflash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/icdriver/spiflash/spiflash.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/gesiFramework.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/gesiFramework.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/gesiFramework.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/gesiFramework.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/hwSPI.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/hwSPI.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/hwSPI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/hwSPI.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/twi_master_driver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/twi_master_driver.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/twi_master_driver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/twi_master_driver.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUARTSPI/uartSPI.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUARTSPI/uartSPI.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUARTSPI/uartSPI.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUARTSPI/uartSPI.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUSART/uart.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUSART/uart.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUSART/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/lowlevel/xmegaUSART/uart.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/main.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/main.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/makedep.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/makedep.mk -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/RA8876Helper.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/RA8876Helper.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/RA8876Helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/RA8876Helper.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/ff.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/ff.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/ff.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/ff.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/file_modem/file_modem.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/file_modem/file_modem.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/file_modem/file_modem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/file_modem/file_modem.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/flashcache.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/flashcache.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/flashcache.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/flashcache.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/gshell/example/example.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/gshell/example/example.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/gshell/example/example.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/gshell/example/example.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/gshell/gshell.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/gshell/gshell.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/gshell/gshell.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/gshell/gshell.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/pifdec/pifdec.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/pifdec/pifdec.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/midlevel/pifdec/pifdec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/midlevel/pifdec/pifdec.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/production.eep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/production.eep -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/production.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/production.elf -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/production.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/production.hex -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/production.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/production.lss -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/production.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/production.map -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/production.srec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/production.srec -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/shell_cmd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/shell_cmd.d -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/Debug/shell_cmd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/Debug/shell_cmd.o -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/PIFtestENV.componentinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/PIFtestENV.componentinfo.xml -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/PIFtestENV.cproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/PIFtestENV.cproj -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/card_mcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/card_mcu.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/icdriver/mcp23.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/icdriver/mcp23.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/icdriver/mcp23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/icdriver/mcp23.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/image.jpg -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/io_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/io_map.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/lowlevel/gesiFramework.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/lowlevel/gesiFramework.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/lowlevel/gesiFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/lowlevel/gesiFramework.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/lowlevel/hwSPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/lowlevel/hwSPI.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/lowlevel/hwSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/lowlevel/hwSPI.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/lowlevel/twi_master_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/lowlevel/twi_master_driver.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/lowlevel/twi_master_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/lowlevel/twi_master_driver.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/main.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/main.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/RA8876Helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/RA8876Helper.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/RA8876Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/RA8876Helper.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/diskio.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/ff.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/ff.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/ffconf.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/flashcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/flashcache.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/flashcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/flashcache.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/pifdec/pifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/pifdec/pifdec.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/midlevel/pifdec/pifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/midlevel/pifdec/pifdec.h -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/shell_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/shell_cmd.c -------------------------------------------------------------------------------- /C Library/examples/PIFtestENV/shell_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/PIFtestENV/shell_cmd.h -------------------------------------------------------------------------------- /C Library/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/examples/README.md -------------------------------------------------------------------------------- /C Library/pifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/pifdec.c -------------------------------------------------------------------------------- /C Library/pifdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/C Library/pifdec.h -------------------------------------------------------------------------------- /Image Converter/PIFCLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Converter/PIFCLI.py -------------------------------------------------------------------------------- /Image Converter/PIFGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Converter/PIFGUI.py -------------------------------------------------------------------------------- /Image Viewer/.vs/PIF Viewer/project-colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/.vs/PIF Viewer/project-colors.json -------------------------------------------------------------------------------- /Image Viewer/.vs/PIF Viewer/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/.vs/PIF Viewer/v17/.suo -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer.sln -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/2.ico -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/PIF Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/PIF Viewer.csproj -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/PIF Viewer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/PIF Viewer.csproj.user -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Program.cs -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Properties/Resources.resx -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Properties/Settings.settings -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Viewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Viewer.Designer.cs -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Viewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Viewer.cs -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/Viewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/Viewer.resx -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/bin/Debug/PIF Viewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/bin/Debug/PIF Viewer.exe -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/bin/Debug/PIF Viewer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/bin/Debug/PIF Viewer.pdb -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/bin/Release/PIF Viewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/bin/Release/PIF Viewer.exe -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/bin/Release/PIF Viewer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/bin/Release/PIF Viewer.pdb -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b61803b5fa695de8207c1d3503f1128835b861dd 2 | -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.exe -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF Viewer.pdb -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF_Viewer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF_Viewer.Properties.Resources.resources -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/PIF_Viewer.ViewerForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/PIF_Viewer.ViewerForm.resources -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF Viewer.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF Viewer.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a9704c6f7cd9eb9e2fa5607a90489d782835a575 2 | -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF Viewer.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Release/PIF Viewer.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF Viewer.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Release/PIF Viewer.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF Viewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Release/PIF Viewer.exe -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF Viewer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Release/PIF Viewer.pdb -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF_Viewer.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Release/PIF_Viewer.Properties.Resources.resources -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/PIF_Viewer.ViewerForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Release/PIF_Viewer.ViewerForm.resources -------------------------------------------------------------------------------- /Image Viewer/PIF Viewer/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Image Viewer/PIF Viewer/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Python Library/pif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Python Library/pif.py -------------------------------------------------------------------------------- /Python Library/test_pif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Python Library/test_pif.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/README.md -------------------------------------------------------------------------------- /Specification/PIF Format Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Specification/PIF Format Specification.pdf -------------------------------------------------------------------------------- /Specification/PIF Format Specification.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/Specification/PIF Format Specification.xlsx -------------------------------------------------------------------------------- /test_images/Lenna/Lenna.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna.bmp -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_BW.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_BW.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_BW_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_BW_rle.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_BW_rle_dither.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_BW_rle_dither.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_Indexed16_RGB565.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_Indexed16_RGB565.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_Indexed16_RGB565_dither.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_Indexed16_RGB565_dither.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_Indexed16_RGB565_dither_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_Indexed16_RGB565_dither_rle.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_Indexed16_RGB565_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_Indexed16_RGB565_rle.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB16C.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB16C.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB16C_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB16C_rle.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB16C_rle_dither.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB16C_rle_dither.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB332.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB332.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB332_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB332_rle.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB332_rle_dither.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB332_rle_dither.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB565.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB565.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB565_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB565_rle.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB888.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB888.pif -------------------------------------------------------------------------------- /test_images/Lenna/Lenna_RGB888_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/Lenna/Lenna_RGB888_rle.pif -------------------------------------------------------------------------------- /test_images/bw_testimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/bw_testimg.png -------------------------------------------------------------------------------- /test_images/bw_testing_odd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/bw_testing_odd.png -------------------------------------------------------------------------------- /test_images/colorful/colorful.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful.bmp -------------------------------------------------------------------------------- /test_images/colorful/colorful_BW.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_BW.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_BW_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_BW_rle.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB16C.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB16C.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB16C_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB16C_rle.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB332.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB332.h -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB332.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB332.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB332_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB332_rle.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB565.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB565.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB565_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB565_rle.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB888.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB888.pif -------------------------------------------------------------------------------- /test_images/colorful/colorful_RGB888_rle.pif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/colorful/colorful_RGB888_rle.pif -------------------------------------------------------------------------------- /test_images/tool_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/tool_screenshot.png -------------------------------------------------------------------------------- /test_images/viewer_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/viewer_screenshot.png -------------------------------------------------------------------------------- /test_images/w_testing_odd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gfcwfzkm/PIF-Image-Format/HEAD/test_images/w_testing_odd.png --------------------------------------------------------------------------------