Pages Recolor Function. Converts the pages from one color space to another. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

Converts the pages from one color space to another.

 

   
Syntax  

[C#]
void Recolor(ColorSpace space, bool convertAnnotations)
void Recolor(ColorSpace space, bool convertAnnotations, out PixMap[] recoloredPixMaps)

[Visual Basic]
Sub Recolor(space As ColorSpace, convertAnnotations As Boolean)
Sub Recolor(space As ColorSpace, convertAnnotations As Boolean, <Out> ByRef recoloredPixMaps As PixMap())

Throws Exceptions may throw Exception()

 

   

Params
 
Name Description
space The destination color space.
convertAnnotations Whether to convert the color space of annotation appearance streams.
recoloredPixMaps All the PixMaps which were recolored as a result of the call.

 

   

Notes
 

Converts the pages from one color space to another.

This method calls the Page.Recolor method on all Page objects within this group of pages.

 

   

Example
 

None.