Search
Diagram.CreateImage Method (IGraphicsPath, Single, Boolean)
See Also
 






Creates a bitmap image representing this diagram, clipped by specified path and scaled by specified factor.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public IImage CreateImage (
    IGraphicsPath clip,
    float scale,
    bool prepareImages = false
)

Visual Basic  Copy Code

Public Function CreateImage( _
    clip As IGraphicsPath, _
    scale As Single, _
    Optional prepareImages As Boolean = False _
) As IImage

 Parameters

clip

An IGraphicsPath instance returned by GraphicsFactory.CreatePath.

scale

Specifies the scale factor as percentage of the original size.

prepareImages
Optional.

Specifies whether images are pre-rendered within a graphic context prior to an export. This is useful, when the exported diagram is not being drawn on an actual graphic context. The default value is false.

 Return Value

A Microsoft.Maui.Graphics.IImage instance.

 Remarks

Pixels outside the specified path are set transparent.

 See Also