Embeds an ICC profile to a file.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As IccProfileExtended
Dim fileName As String
Dim pageNumber As Integer
instance.WriteToImage(fileName, 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 Basic | Copy Code |
---|
Public Sub WriteToImageExample()
Dim iccProfile As New IccProfileExtended("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\ICCv42.icc")
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
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