Click or drag to resize
Pdftools logo

IccBasedColorSpaceCreate Method

Create an new ICC-based color space from an ICC color profile.

The returned color space object is not yet used on any page, but it is associated with the given target document.

Namespace: PdfTools.Toolbox.Pdf.Content
Assembly: PdfTools.Toolbox (in PdfTools.Toolbox.dll) Version: 1.1.0+5820e9ca9ca173983539ffc40abc227fb62e6928
Syntax
C#
public static IccBasedColorSpace Create(
	Document targetDocument,
	Stream profile
)

Parameters

targetDocument  Document
the output document with which the returned object is associated
profile  Stream
the color profile data stream

Return Value

IccBasedColorSpace
newly created color profile object
Exceptions
ExceptionCondition
IOExceptionError reading from the profile or writing to the document
UnknownFormatExceptionThe profile data has an unknown format
CorruptExceptionThe profile data is corrupt
ArgumentExceptionif the targetDocument argument has already been closed
ArgumentExceptionif the targetDocument argument is read-only
ArgumentExceptionif the profile argument is
ArgumentNullExceptionif targetDocument is .
ArgumentNullExceptionif profile is .
See Also