MathKernelGraphics Property
Gets the accumulated Images from the Wolfram Language graphics output during the last call to
Compute.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
public Image[] Graphics { get; }
Public ReadOnly Property Graphics As Image()
Get
public:
property array<Image^>^ Graphics {
array<Image^>^ get ();
}
member Graphics : Image[] with get
Property Value
Image
This property relies on the System.Drawing.Image class, which is only available to programs running on Microsoft Windows,
or running on Linux when using Mono. On other platforms you can instead use the
GraphicsBytes property to get the graphics
as an array of bytes in whatever bitmap format you requested via the
GraphicsFormat property.
You must set the
CaptureGraphics property to true to use this property.