Merge branch 'libpng-master' of github.com:alexelex/sandboxed-api into libpng-master

pull/69/head
Alexandra Latysheva 2020-10-30 13:27:40 +00:00
commit dcf397bb97
1 changed files with 17 additions and 9 deletions

View File

@ -17,20 +17,28 @@ make -j8
#### Example:
You should add `-DLIBPNG_SAPI_ENABLE_EXAMPLES=ON` to use the example.\
run PNG to PNG: `./examples/pngtopng /absolute/path/to/input/image.png /absolute/path/to/output/image.png`\
run RGB to BGR: `./examples/rgbtobgr /absolute/path/to/input/image.png /absolute/path/to/output/image.png`
run PNG to PNG:
```
./examples/pngtopng /absolute/path/to/input/image.png /absolute/path/to/output/image.png
```
run RGB to BGR:
```
./examples/rgbtobgr /absolute/path/to/input/image.png /absolute/path/to/output/image.png
```
Input and output examples can be found in images directory.
Examples of input and output can be found in `images`.
PNG to PNG: \
input: `/abs/path/to/project/images/pngtest.png`\
output:` /abs/path/to/project/images/pngtopng_pngtest.png`
input: `images/pngtest.png`\
output:` images/pngtopng_pngtest.png`
RGB to BGR: \
input: `/abs/path/to/project/images/red_ball.png`\
output:` /abs/path/to/project/images/rgbtobgr_red_ball.png`
input: `images/red_ball.png`\
output: `images/rgbtobgr_red_ball.png`
#### Tests:
You should add `-DLIBPNG_SAPI_ENABLE_TESTS=ON` to use tests.\
run: `./tests/tests`
You should add `-DLIBPNG_SAPI_ENABLE_TESTS=ON` to use tests and run:
```
./tests/tests
```