fo-dicom.Codecs 5.13.4

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package fo-dicom.Codecs --version 5.13.4
NuGet\Install-Package fo-dicom.Codecs -Version 5.13.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="fo-dicom.Codecs" Version="5.13.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add fo-dicom.Codecs --version 5.13.4
#r "nuget: fo-dicom.Codecs, 5.13.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install fo-dicom.Codecs as a Cake Addin
#addin nuget:?package=fo-dicom.Codecs&version=5.13.4

// Install fo-dicom.Codecs as a Cake Tool
#tool nuget:?package=fo-dicom.Codecs&version=5.13.4

fo-dicom.Codecs

NuGet github Build Status

<img src="https://lh3.googleusercontent.com/-Fq3nigRUo7U/VfaIPuJMjfI/AAAAAAAAALo/7oaLrrTBhnw/s1600/Fellow%2BOak%2BSquare%2BTransp.png" alt="fo-dicom logo" height="80" /><img src="efferent_logo.png" alt="Efferent logo" height="80" />

This is collaborative project mantained by Fellow Oak Dicom and Efferent Health, LLC. The codecs in this repository are written in pure C/C++ code and wrapped with C# and netstandard2.0. The supported platforms so far are:

  • Windows 64-bit (tested with Windows 10/11)
  • Linux 64-bit Intel and ARM architectures (tested with Ubuntu 16/18/20 Desktop and Server)
  • MacOS 64-bit Intel and Apple architectures (tested with Ventura/Sonoma)

Supported CODECs

The following CODECS are implemented:

  • JPEG 2000 Image Compression (Lossless Only)
  • JPEG 2000 Image Compression
  • JPEG Baseline (Process 1): Default Transfer Syntax for Lossy JPEG 8 Bit Image Compression
  • JPEG Extended (Process 2 & 4): Default Transfer Syntax for Lossy JPEG 12 Bit Image Compression - (Process 4 only)
  • JPEG Lossless, Non-Hierarchical (Process 14)
  • JPEG Lossless, Non-Hierarchical, First-Order Prediction (Process 14 [Selection Value 1]): Default Transfer Syntax for Lossless JPEG Image Compression
  • JPEG-LS Lossless Image Compression
  • JPEG-LS Lossy (Near-Lossless) Image Compression
  • RLE Lossless
  • High-Throughput JPEG 2000 (HTJ2K) encoding is already in beta phase!!! (read https://github.com/Efferent-Health/fo-dicom.Codecs/issues/54)

Usage

  • Add the standard fo-dicom nuget packages to your project (tested with 4.0.8 and 5.0.3)

With fo-dicom 4.0

  • Add the nuget package to your .net Standard or .net Core project (minimum version is 2.0)
  • Add the standard fo-dicom nuget packages to your project (version 4.0.x)
  • At the beginning of your application, replace the transcoder manager, as:
    Dicom.Imaging.Codec.TranscoderManager.SetImplementation(new Dicom.Imaging.NativeCodec.NativeTranscoderManager());
    

With fo-dicom 5.0

  • Add the nuget package to your .net Standard or .NET project (minimum version is .NET 5.0)
  • Add the standard fo-dicom nuget packages to your project (version 5.0.x)
  • At the beginning of your application, replace the transcoder manager, as:
    new DicomSetupBuilder()
      .RegisterServices(s => s.AddFellowOakDicom().AddTranscoderManager<FellowOakDicom.Imaging.NativeCodec.NativeTranscoderManager>())
      .SkipValidation()
      .Build();
    

Dependencies

Windows

It is required to have Visual C++ Redistributable v14 installed in the target Windows machine. Otherwise, it will throw a runtime error:

Unable to load DLL 'Dicom.Native': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

The installer can be downloaded directly from https://aka.ms/vs/17/release/vc_redist.x64.exe

Linux

The native library has been built on an Ubuntu 18 environment using GNU C Compiler version 7.4.x.

Therefore, it requires a GLIBC library runtime version 2.27 and GLIBCXX version 3.4. Otherwise, it can throw a runtime error like:

Unhandled Exception: System.DllNotFoundException: Unable to load shared library 'Dicom.Native.so' or one of its dependencies.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on fo-dicom.Codecs:

Package Downloads
Kayisoft.Abp.FoDicom.Codecs

Kayisoft FoDicom Codecs Module

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on fo-dicom.Codecs:

Repository Stars
fo-dicom/fo-dicom
Fellow Oak DICOM for .NET, .NET Core, Universal Windows, Android, iOS, Mono and Unity
fo-dicom/fo-dicom-samples
Sample applications associated with the fo-dicom framework
Version Downloads Last updated
5.14.0-beta1 7 7/2/2024
5.13.4 111 7/1/2024
5.13.0 3,448 5/23/2024
5.12.0 10,992 2/28/2024
5.11.0 21,067 11/15/2023
5.10.9 458 11/15/2023
5.10.8 27,558 6/30/2023
5.10.7 3,068 6/22/2023
5.10.6 10,255 5/23/2023
5.10.5 4,322 5/5/2023
5.10.4 714 5/5/2023
5.10.3 9,088 4/13/2023
5.10.2 4,169 3/27/2023
5.10.0 20,557 3/2/2023
5.9.2 1,545 2/23/2023
5.9.0 1,343 2/20/2023
5.1.0 178,779 1/26/2022
5.0.3 5,277 1/4/2022
5.0.2 13,930 10/5/2021
5.0.1 1,039 9/23/2021
5.0.0 1,628 9/14/2021