Properly implement color spaces

This commit is contained in:
BobLD
2023-04-06 22:34:32 +01:00
committed by BobLd
parent db0583edea
commit b8a98fbed2
41 changed files with 824 additions and 631 deletions

View File

@@ -28,9 +28,6 @@
/// <inheritdoc />
public int HeightInSamples { get; }
/// <inheritdoc />
public ColorSpace? ColorSpace { get; }
/// <inheritdoc />
public int BitsPerComponent { get; }
@@ -73,7 +70,6 @@
int widthInSamples,
int heightInSamples,
int bitsPerComponent,
ColorSpace? colorSpace,
bool isJpxEncoded,
bool isImageMask,
RenderingIntent renderingIntent,
@@ -88,7 +84,6 @@
WidthInSamples = widthInSamples;
HeightInSamples = heightInSamples;
BitsPerComponent = bitsPerComponent;
ColorSpace = colorSpace;
IsJpxEncoded = isJpxEncoded;
IsImageMask = isImageMask;
RenderingIntent = renderingIntent;