mirror of
https://github.com/UglyToad/PdfPig.git
synced 2026-03-10 00:23:29 +08:00
Properly implement color spaces
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user