Deletes a comment field from a file.
public void DeleteComment(Stream stream,int pageNumber,RasterCommentMetadataType type)
Public Overloads Sub DeleteComment( _ByVal stream As Stream, _ByVal pageNumber As Integer, _ByVal type As Leadtools.RasterCommentMetadataType _)
public void DeleteComment(Stream stream,int pageNumber,Leadtools.RasterCommentMetadataType type)
function Leadtools.Codecs.RasterCodecs.DeleteComment(Stream,Int32,RasterCommentMetadataType)(stream ,pageNumber ,type)
public:void DeleteComment(Stream^ stream,int pageNumber,Leadtools.RasterCommentMetadataType type)
stream
A Stream containing the input file data.
pageNumber
1-based index of the page from which to read the comment.
type
The type of comment. Refer to Types of File Comments.
This function only applies to TIF, EXIF, JPEG or JPEG 2000 files.
You can use CommentsSupported to determine whether a certain file format supports comments.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Color;using Leadtools.Svg;using LeadtoolsExamples.Common;public void DeleteCommentExample(){RasterCodecs codecs = new RasterCodecs();string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Test.jpg");RasterCommentMetadataType commentType = RasterCommentMetadataType.IptcKeywords;RasterCommentMetadata comment = codecs.ReadComment(srcFileName, 1, commentType);if (comment == null)Debug.WriteLine("comment is already missing!");else{codecs.DeleteComment(srcFileName, 1, commentType);comment = codecs.ReadComment(srcFileName, 1, commentType);if (comment != null)Debug.WriteLine("comment is still there!");}// Clean upcodecs.Dispose();}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.ColorImports Leadtools.DrawingImports Leadtools.SvgPublic Sub DeleteCommentExample()Dim codecs As New RasterCodecs()Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Test.jpg")Dim commentType As RasterCommentMetadataType = RasterCommentMetadataType.IptcKeywordsDim comment As RasterCommentMetadata = codecs.ReadComment(srcFileName, 1, commentType)If (comment Is Nothing) ThenDebug.WriteLine("comment is already missing!")Elsecodecs.DeleteComment(srcFileName, 1, commentType)comment = codecs.ReadComment(srcFileName, 1, commentType)If (Not comment Is Nothing) ThenDebug.WriteLine("comment is still there!")End IfEnd If' Clean upcodecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
