36 Commits

Author SHA1 Message Date
Victor Derks
66a3605fd9
Add REUSE compatibility (#338)
- Follow the best practices of https://reuse.software/ to ensure BSD-3 licence is correctly applied.
- Add a badge to README.md
- Note: remove arm build as the CI pipeline is broken for this architecture
2024-12-04 12:33:36 +01:00
Victor Derks
8421eef930
Extend API of jpeg_encoder with encode_components methods (#332)
Add an additional method for advanced encodings scenarios. This methods allow to encode components with different
coding parameters like: near lossless, jpeg-ls preset coding parameters or scans with different interleave modes.
Extend the decoder to also be able to decode scans with different interleave modes.
2024-09-10 14:25:12 +02:00
Victor Derks
5a348dce6f
Add support to retrieve height from a DNL marker segment. (#329)
DNL markers are part of the official JPEG-LS standard (but almost never used). Add support to scan the buffer for this
marker segment if the height is zero.
By design CharLS itself will never write DNL marker segment as it always knows the height of the image before it writes the SOF marker segment.
2024-09-03 23:21:24 +02:00
Victor Derks
19afb35985
Simplify enums: only define used values (#310)
Remove values from the enum that are only needed for slightly better error reporting (handle this locally)

Also add support matrix to readme
2024-07-24 12:28:57 +02:00
Victor Derks
eaba4b02a1
Add support to encode and decode mapping tables (#302)
* Add support to write mapping tables to the JPEG byte stream.
* Add API method to set the table ID for a component
* Add method to create JPEG-LS file with mapping tables only.
* Add support to read mapping tables
* Parse table-ids from the scan segment
* Extend API of charls_decoder_get_mapping_table_index to return -1 if index is not found
* Add support to read mapping table continuation segments
* Document new API methods
* Add sample image from appendix H.4.5 "Example of a palletised image" / Figure H.10 to unit test
* Update the get_mapping_table API to include size of the buffer
2024-07-23 13:17:12 +02:00
Victor Derks
2c4d3f439c
Update version to 3.0.0 and minimum C++ version to 17 (#230)
The release of C++17 has been 5 years ago. The supported period of C++14 has ended and the minimum required C++ version will be increased to C++17 for building the library and using it.
2023-03-24 22:27:26 +01:00
Victor Derks
38d95d0067
Add a SonarCloud badge to README.md (#226) 2023-01-05 00:38:57 +01:00
Victor Derks
c781c3ec78
Update URLs in README.md (#220) 2022-12-29 14:49:12 +01:00
Victor Derks
82e883e92e
Update version to 2.4.0 (#211) 2022-12-27 20:25:34 +01:00
Victor Derks
09bce5e65f
Improve the compatibility with VS static analyzers (#200)
Ensure that CharLS can be compiled with zero static analyzer warnings in VS2019 and VS2022.
VS2019 needs more explicit lambda capture.
2022-10-05 13:03:11 +02:00
Victor Derks
8da3189851
Update release notes for v2.3.0 (#151) 2022-01-23 17:26:47 +01:00
Mathieu Malaterre
6468f66e3f
Clarify limitation for palette color (#137)
sample-mapping procedure is JPEG-LS specific, clarify limitation for palletized images.
2022-01-13 00:11:31 +01:00
Victor Derks
34b1f24a3e
Add support to encode\decode oversized images (#134)
The JPEG-LS standard allows to encode images with a width or height larger then 2^16.
Add  support for this mechanism.
2022-01-09 20:24:50 +01:00
Victor Derks
e90cba4817
Remove Travis CI integration (#118)
Travis CI has stopped to support open source projects. Remove the integration.
2021-12-19 22:58:27 +01:00
Mathieu Malaterre
bea1c00dc6
Reflect documentation that .NET 6.0 is supported (#111) 2021-12-05 13:01:16 +01:00
Victor Derks
cb44fab24d
Add support to decode JPEG-LS images with restart markers (#99)
* Add support to parse DRI segments

* Add support to decode restart markers

* Update CharLSTest to also decode color images none interleaved to ppm

* Replace static_cast<void> with std::ignore

* Update readme, changelog and refactor
2021-09-26 22:21:07 +02:00
Mathieu Malaterre
3d43509c31 Update README.md 2021-09-01 21:58:28 +02:00
Victor Derks
e4e6fd35ca
Add link to JPEG-LS plugin for Python Pillow project 2021-03-07 17:45:07 +01:00
Victor Derks
f21275d140
Add ppc64le (PowerPC Little Endian) as supported architecture
With the introduction of the POWER8 architecture, the little endian variant ppc64le was also introduced. As the Travis CI build pipeline also supports this architecture add it to the list of supported platforms.
2020-11-22 13:06:13 +01:00
Victor Derks
fa363837e0
Remove .NET adapter (moved to its own repository)
The .NET adapter has been moved to its own repository at https://github.com/team-charls/charls-native-dotnet

The .NET adapter in this repository was for .NET standard 2.0, which has been replaced by .net5.0
Having the .NET adapter in its own repository makes releasing easier and many uses case only require the "pure" C++ native library.
2020-11-13 21:42:01 +01:00
Victor Derks
7af44b40b8
Add Related Projects section to README.md 2020-11-13 21:16:12 +01:00
Victor Derks
3570207a91 Add an azure pipeline badge to resolve #61 2020-01-06 00:40:26 +01:00
Victor Derks
4ab03c168a Update README.md with vcpkg info for Linux and macOS 2019-12-27 14:15:13 +01:00
Victor Derks
4068536c72 Update the paragraph about the implementation limitations 2019-11-23 17:25:02 +01:00
Victor Derks
6fba16f2fa Update the CHANGELOG for fixed issue #51 2019-07-05 21:59:37 +02:00
Victor Derks
a34f26c7ab Add reference in README.dm to JPEG-LS logo and LICENSE.md 2018-11-21 22:31:50 +01:00
Victor Derks
6db1e29b39 Add vcpkg reference and section about release management 2018-10-24 00:10:31 +02:00
Victor Derks
7839f832b3 Resolve C++ Core Guidelines issues. 2017-10-05 16:41:53 +02:00
Victor Derks
44004d1a72 Remove support for Visual Studio 2015
As Visual Studio 2017 is available, it doesn't makes sense to include support for 2015. VS 2017 has much better support for C++14 then VS  2015.
2017-10-03 22:17:42 +02:00
Mathieu Malaterre
8bb946e447 Fix a typo in my name 2016-10-05 14:44:58 +02:00
Victor Derks
3f5ef73f39 Updated text to remark that implementation on the master branch uses C++14 2016-05-15 23:18:11 +02:00
Victor Derks
f866c53b76 Fix for building on Travis and adding build status image to readme.md 2016-01-23 00:51:32 +01:00
Victor Derks
c5b6f4fd1c Added build badge 2015-09-27 23:57:00 +02:00
Victor Derks
655a47c25d Converted the README.txt and the project description text from http://charls.codeplex.com/ in a new README.md file. 2015-09-27 09:41:01 +02:00
Victor Derks
7116e6a7d5 Renamed from README.md to README.txt as Codeplex cannot render .md files correctly. 2014-06-26 09:31:24 +02:00
Victor Derks
abfe237b51 Added simple project readme in markdown language. 2014-05-29 21:53:07 +02:00