ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTImageEmb Class
Members Example




In This Topic
    ImGearARTImageEmb Class
    In This Topic
    Represents legacy ART Embedded Image mark.
    Object Model
    ImGearARTImageEmb ClassImGearRectangle StructureImGearRectangle StructureImGearPage Class
    Syntax
    'Declaration
     
    Public Class ImGearARTImageEmb 
       Inherits ImGearARTMark
    'Usage
     
    Dim instance As ImGearARTImageEmb
    public class ImGearARTImageEmb : ImGearARTMark 
    public __gc class ImGearARTImageEmb : public ImGearARTMark 
    public ref class ImGearARTImageEmb : public ImGearARTMark 
    Example
    // Setup rectangle for the embedded image mark's location.
    ImGearRectangle igRectangle = new ImGearRectangle(10, 10, 100, 100);
    // Load an image to embed
    ImGearPage igPageEmbedded;
    using (FileStream localFile = new FileStream("photo.jpg", FileMode.Open))
    {
        igPageEmbedded = ImGearFileFormats.LoadPage(localFile, 0);
    }
    // Create embedded image mark using igPageEmbedded.
    ImGearARTImageEmb igARTImageEmb = new ImGearARTImageEmb(
        igRectangle, igPageEmbedded
    );
    // Add the annotation to the ARTPage.
    igARTPage.AddMark(igARTImageEmb, ImGearARTCoordinatesType.IMAGE_COORD);
    ' Setup rectangle for the embedded image mark's location.
    Dim igRectangle As New ImGearRectangle(10, 10, 100, 100)
    ' Load an image to embed
    Dim igPageEmbedded As ImGearPage
    Using localFile As New FileStream("photo.jpg", FileMode.Open)
        igPageEmbedded = ImGearFileFormats.LoadPage(localFile, 0)
    End Using
    ' Create embedded image mark using igPageEmbedded.
    Dim igARTImageEmb As New ImGearARTImageEmb( _
     igRectangle, igPageEmbedded)
    ' Add the annotation to the ARTPage.
    igARTPage.AddMark(igARTImageEmb, ImGearARTCoordinatesType.IMAGE_COORD)
    Inheritance Hierarchy

    System.Object
       ImageGear.ART.ImGearARTSelection
          ImageGear.ART.ImGearARTMark
             ImageGear.ART.ImGearARTImageEmb

    See Also