961 Commits

Author SHA1 Message Date
Dmitry Kazakov
adc94393db
Fix finding libspng with CMake (#262)
The macro should be included before usage, this include is not
auto-generated by @PACKAGE_INIT@
2023-12-20 16:03:15 +02:00
Randy
e5c1fc470f README: remove gitlab badges [skip-ci]
gitlab ci is no longer used
2023-05-17 07:02:57 +03:00
Randy
fb768002d4 bump version to v0.7.4 v0.7.4 2023-05-08 16:45:20 +03:00
Randy
e68ba5df57
decode: fix invalid error return for 0-length EXIF (#248) 2023-04-28 07:05:41 +03:00
Rosen Penev
4d185a8117 add meson CI
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2023-04-25 04:31:18 +02:00
Rosen Penev
dc944de9df meson: try to fix compilation with clang-cl
with clang-cl, compilation fails with an undefined reference to __cpu_indicator_init

Online search indicates this is related to target_clones.

Try linking to make sure this actually works.
2023-04-25 04:31:18 +02:00
Johannes Schäufele
ea6ca5bc18
cmake: add config-file package support, add static library pkg-config (#241) 2023-02-24 22:24:33 +02:00
coeps
75c39ce094
Fixed copy paste error in CMakeLists.txt (#245)
target_include_directories(spng <-- _static missing
2023-01-27 17:54:13 +02:00
Randy
d86a11d3ab update copyright year 2023-01-01 19:38:26 +02:00
Randy
bab9f94a11 fix SPDX ID for spng.h
"(BSD-2-Clause AND libpng-2.0)" only applies to spng.c,
there is no libpng code in the header.
v0.7.3
2022-11-22 20:41:10 +02:00
Andrea Pappacoda
6a4ef9f794
build(meson): remove explicit pkgconf Libs.private (#239)
Meson automatically extracts the required dependencies of the library
passed to `pkg.generate()`, so there's no need to list them explicitly.

This also removes the unneeded `-lz` from `Libs.private` when
`Requires.private` already specifies `zlib`.
2022-11-22 19:27:18 +01:00
Randy
5050422f46 remove unfinished debian/ files 2022-11-21 19:25:55 +02:00
Ben
89efb0d18a
cmake: added spng to include directories (#235)
Co-authored-by: Benedikt Schmitt <me@kiraly.email>
2022-11-21 18:20:18 +01:00
Loobinex
6c7c8ce372
Fixed -Wshadow warning (#236)
Co-authored-by: xtremeqg <xtremeq_g@hotmail.com>
2022-11-19 16:02:16 +01:00
Randy
3094985ffb
ci: upgrade to bullseye (#232) 2022-10-31 21:05:56 +01:00
Randy
7645e399cf meson: update zlib wrap to 1.2.13 2022-10-31 19:38:24 +02:00
Randy
af8f480179 docs: fix typo in encode.md [skip-ci] 2022-10-28 17:10:13 +03:00
Randy
b519e6df3a docs: encode speed tips do not apply to truecolor-alpha [skip-ci]
the worst-case file sizes make it not worth changing defaults
2022-10-28 16:59:33 +03:00
Randy
b9e894cb23 docs: add encode speed optimization tips [skip-ci] 2022-10-28 16:47:50 +03:00
Daniel Jennings
54bd4c3d36
fix typo in decode.md (#228)
`spng_set_chunk_limits` not `spng_set_chunks_limits`
2022-10-18 13:13:52 +02:00
Randy
c9451cab66 spng_set_iccp(): minor length check fix
UINT_MAX isn't the right constant to check against
2022-10-03 07:42:08 +03:00
Randy
eb260797ad Merge branch 'master' of https://github.com/randy408/libspng 2022-08-18 11:32:43 +02:00
Randy
4b568aca53 cmake: set C standard 2022-08-18 11:32:39 +02:00
shuffle2
c4126ad8ce
Fix typo in decode.md (#225) 2022-07-31 07:34:16 +02:00
Rosen Penev
dc5b1032c0
fix compilation under mingw32 (#222)
mingw32 does not enable SSE2 by default.
2022-07-11 19:19:14 +02:00
ocpalo
13cb56aef9
docs: fix references in migration guide 2022-07-02 19:02:09 +02:00
Randy
6cc95648d2 docs: fix more typos [skip-ci] 2022-07-02 19:00:06 +02:00
Tim Gates
2eb24e246b docs: Fix a few typos
There are small typos in:
- docs/chunk.md
- docs/migrate-libpng.md

Fixes:
- Should read `subsequent` rather than `subequent`.
- Should read `physical` rather than `phyiscal`.
- Should read `transforms` rather than `tranforms`.
2022-07-02 18:54:47 +02:00
Randy
a4b209fa2c cleanup: use Z_NO_FLUSH instead of 0 for inflate() 2022-06-01 23:49:48 +02:00
Randy
3c640a075d README: minor usage example fix [skip-ci]
thanks to @nedelec for pointing it out
2022-04-21 23:00:00 +02:00
Michael Malone
82b0c5107d cmake: make finding zlib in-tree easier
When building libspng as a sub-module alongside zlib as a sub-module,
then it becomes much easier to locate the in-tree zlib when the
ZLIB_ROOT variable can be set to ${zlib_BINARY_DIR}.  This is especially
useful when building on Windows where zlib-dev typically isn't
installed.
2022-04-21 22:53:51 +02:00
Randy
0bd962bb8e meson: update zlib wrap 2022-04-11 10:36:03 +02:00
Randy
c8a79acee3 docs: improve wording on SPNG_STATIC [skip-ci] 2022-04-07 18:18:53 +02:00
Randy
e26770d44b update comments on spng_format 2022-03-23 20:22:03 +01:00
Randy
1aad1dbd61 docs: move section on untrusted files, cleanup [skip-ci] 2022-03-23 20:18:36 +01:00
Randy
c61b888cb9 write_fuzzer: increase compression level
disabling compression had lead to lower code coverage
2022-03-07 19:17:18 +01:00
Randy
12635f0de2 read_fuzzer: keep unknown chunks 2022-03-07 19:17:18 +01:00
Randy
d981609eec read_non_idat_chunks(): fix redeclaration 2022-02-14 07:13:44 +01:00
Randy
83e9e68b0b encode: clean up unknown chunk writes 2022-02-14 07:13:44 +01:00
Randy
05781a38d4 read_scanline_bytes(): cleanup 2022-02-14 07:13:44 +01:00
Randy
3a8a2314ee bump version to v0.7.3 2022-02-11 20:29:56 +01:00
Randy
4baa1b1384
decode: expose zlib FLEVEL for images (#204) v0.7.2 2022-02-09 23:56:04 +01:00
Randy
93b2e4e8f6 write_fuzzer: reduce image compression level 2022-02-09 11:36:13 +01:00
Randy
61b60bc6ad spng_encode_chunks(): add more checks, cleanup 2022-02-09 10:55:37 +01:00
Randy
930ac3d033
Add issue template 2022-02-03 19:32:54 +01:00
Randy
e47826e7d9 docs: add sections on options [skip-ci] 2022-02-02 07:15:25 +01:00
Randy
30a94e6226 update example.c 2022-02-01 18:29:31 +01:00
Randy
44d0636767
Lift image size restriction for progressive decode/encode (#202) 2022-02-01 18:28:03 +01:00
Randy
b457ac0108
refactor example.c (#200) 2022-01-31 20:13:59 +01:00
Randy
2bd9bbe1bf docs: encoding indexed color images requires a palette [skip-ci] 2022-01-29 19:43:11 +01:00