// 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)