'Declaration
Public Function AddEmbeddedImageAnnotFromBase64( _ ByVal Base64Image As String, _ ByVal Left As Single, _ ByVal Top As Single, _ ByVal Width As Single, _ ByVal Height As Single _ ) As AnnotationEmbeddedImage
public AnnotationEmbeddedImage AddEmbeddedImageAnnotFromBase64( string Base64Image, float Left, float Top, float Width, float Height )
public function AddEmbeddedImageAnnotFromBase64( Base64Image: String; Left: Single; Top: Single; Width: Single; Height: Single ): AnnotationEmbeddedImage;
public function AddEmbeddedImageAnnotFromBase64( Base64Image : String, Left : float, Top : float, Width : float, Height : float ) : AnnotationEmbeddedImage;
public: AnnotationEmbeddedImage* AddEmbeddedImageAnnotFromBase64( string* Base64Image, float Left, float Top, float Width, float Height )
public: AnnotationEmbeddedImage^ AddEmbeddedImageAnnotFromBase64( String^ Base64Image, float Left, float Top, float Width, float Height )
Parameters
- Base64Image
- A base64 encoded string containing the data of the image to render as an annotation.
- Left
- The horizontal (X) coordinate of the top left point, in inches, where the annotation bounding box is to be located.
- Top
- The vertical (Y) coordinate of the top left point, in inches, where the annotation bounding box is to be located.
- Width
- The width of the annotation bounding box, in inches.
- Height
- The height of the annotation bounding box, in inches.
Return Value
A GdPicture/XMP AnnotationEmbeddedImage object. The newly added GdPicture/XMP embedded image annotation.