GroupDocsGists
10/19/2017 - 11:06 AM

Documents-AddWatermarkToImagesExcelWorksheet.vb

' For complete examples and data files, please go to https://github.com/groupdocs-watermark/GroupDocs.Watermark-for-.NET
Using doc As CellsDocument = Document.Load(Of CellsDocument)(Utilities.MapSourceFilePath(FilePath))
    Dim watermark As New TextWatermark("Protected image", New Font("Arial", 8))
    watermark.HorizontalAlignment = HorizontalAlignment.Center
    watermark.VerticalAlignment = VerticalAlignment.Center
    watermark.RotateAngle = 45
    watermark.SizingType = SizingType.ScaleToParentDimensions
    watermark.ScaleFactor = 1

    ' Get all images from the first worksheet
    Dim images As WatermarkableImageCollection = doc.Worksheets(0).FindImages()

    ' Add watermark to all found images
    For Each image As WatermarkableImage In images
        image.AddWatermark(watermark)
    Next

    doc.Save()
End Using