Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 15.5.7
WriteToImage(String,Int32) Method
See Also  Example
Leadtools.ColorConversion Namespace > IccProfileExtended Class > WriteToImage Method : WriteToImage(String,Int32) Method




fileName
Character string containing the name of the file that contains the embedded ICC profile.
pageNumber
1-based index of the page within the file that contains the ICC profile.
Embeds an ICC profile to a file.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub WriteToImage( _
   ByVal fileName As String, _
   ByVal pageNumber As Integer _
) 
Visual Basic (Usage)Copy Code
Dim instance As IccProfileExtended
Dim fileName As String
Dim pageNumber As Integer
 
instance.WriteToImage(fileName, pageNumber)
C# 
public void WriteToImage( 
   string fileName,
   int pageNumber
)
Managed Extensions for C++ 
public: void WriteToImage( 
   string* fileName,
   int pageNumber
) 
C++/CLI 
public:
void WriteToImage( 
   String^ fileName,
   int pageNumber
) 

Parameters

fileName
Character string containing the name of the file that contains the embedded ICC profile.
pageNumber
1-based index of the page within the file that contains the ICC profile.

Example

This example loads an ICC profile and embeds it in an image.

Visual BasicCopy Code
Public Sub WriteToImageExample()
   ' load an Icc Profile
   Dim iccProfile As New IccProfileExtended("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\ICCv42.icc")

   ' embedd the loaded ICC profile in the image, by specifying the image's name, and the page number in which to embed the ICC.
   ' if you want to embed the ICC into an image that is a stream, put the stream's name instead of the image's file name.
   iccProfile.WriteToImage("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\ImageWithoutIcc.tif", 1)
End Sub
C#Copy Code
public void WriteToImageExample() 

   // load an Icc Profile 
   IccProfileExtended iccProfile = new IccProfileExtended(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\ICCv42.icc"); 
 
   // embedd the loaded ICC profile in the image, by specifying the image's name, and the page number in which to embed the ICC. 
   // if you want to embed the ICC into an image that is a stream, put the stream's name instead of the image's file name. 
   iccProfile.WriteToImage(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\ImageWithoutIcc.tif", 1); 
}

Remarks

ICC profiles can be embedded in JPEG, TIFF or GIF files. For multipage files, and you can save the profile to a particular page using the pageNumber parameter. If the ICC was version 4.0 or 4.2, this method generates the profile id, and updates the data array.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also