The well known libPNG 1.5.30 working on the Casio fx-CG50/Graph 90+E and fx-Cg10/20/PRIZM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sylvain PILLOT 89dfc20089
corrected find_package and target_link_libraries stuff
9 months ago
cmake corrected find_package and target_link_libraries stuff 9 months ago
.gitignore Updated name to cPNG + creation of automatic link with cZlib 9 months ago
CMakeLists.txt corrected find_package and target_link_libraries stuff 9 months ago
README.md Updated name to cPNG + creation of automatic link with cZlib 9 months ago
config.h rev 1.0 - initial commit 1 year ago
example.c rev 1.0 - initial commit 1 year ago
giteapc.make Updated name to cPNG + creation of automatic link with cZlib 9 months ago
png.c rev 1.0 - initial commit 1 year ago
png.h rev 1.0 - initial commit 1 year ago
pngconf.h rev 1.0 - initial commit 1 year ago
pngdebug.h rev 1.0 - initial commit 1 year ago
pngerror.c rev 1.0 - initial commit 1 year ago
pngget.c rev 1.0 - initial commit 1 year ago
pnginfo.h rev 1.0 - initial commit 1 year ago
pnglibconf.c rev 1.0 - initial commit 1 year ago
pnglibconf.h rev 1.0 - initial commit 1 year ago
pngmem.c rev 1.0 - initial commit 1 year ago
pngpread.c rev 1.0 - initial commit 1 year ago
pngpriv.h rev 1.0 - initial commit 1 year ago
pngread.c rev 1.0 - initial commit 1 year ago
pngrio.c rev 1.0 - initial commit 1 year ago
pngrtran.c rev 1.0 - initial commit 1 year ago
pngrutil.c rev 1.0 - initial commit 1 year ago
pngset.c rev 1.0 - initial commit 1 year ago
pngstruct.h rev 1.0 - initial commit 1 year ago
pngtest.c rev 1.0 - initial commit 1 year ago
pngtrans.c rev 1.0 - initial commit 1 year ago
pngwio.c rev 1.0 - initial commit 1 year ago
pngwrite.c rev 1.0 - initial commit 1 year ago
pngwtran.c rev 1.0 - initial commit 1 year ago
pngwutil.c rev 1.0 - initial commit 1 year ago

README.md

Library cPNG 1.5.30 repository for CASIO fx-CG 10/20 (a.k.a. PRIZM) and fx-CG 50 (or Graph 90+E)

Need to have a fully working gcc toolchain for SH3/SH4 architecture.

Note: libcPNG requires cZlib available, so the very first step is to get that library available and working prior to libcPNG. You can get a working Zlib for CASIO fx-CG 10/20 (a.k.a. PRIZM) and fx-CG 50 (or Graph 90+E) here : libcZlib for PRIZM

You can use the giteapc install Slyvtt/cPNG command to get an automatic install

Using in a program

With CMake

find_package(cPNG 1.5.30 REQUIRED)
target_link_libraries(<TARGET> PRIVATE cPNG::cPNG)

With make, the following steps are not automatically done, so please proceed with the following manipulations :

  • copy the library libcPNG.a into your SH3/SH4 compiler lib folder
  • copy png.h, pngconf.h and pnglibconf.h files contained in the include folder into the include folder of the SH3/SH4 compiler
  • link with -lcPNG -lcZlib

In the C/C++ sources #include <png.h>