public void WriteToImage(
string fileName,
int pageNumber
)
public:
void WriteToImage(
String^ fileName,
int pageNumber
)
def WriteToImage(self,fileName,pageNumber):
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.
This example loads an ICC profile and embeds it in an image.
using Leadtools;
using Leadtools.ColorConversion;
using Leadtools.Codecs;
public string outputFileName = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "test_ICC_Profile.tif");
public void WriteToImageExample()
{
// Load an ICC profile
string IccfileName = Path.Combine(LEAD_VARS.ImagesDir, "ColorConversion", "IccProfileExtended.icc");
IccProfileExtended iccProfile = new IccProfileExtended(IccfileName);
// Embed the loaded ICC profile in the image, by specifying the image's name, and the page number in which to embed the ICC.
// 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(outputFileName, 1);
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document