MathKernelGraphicsBytes Property

Gets the accumulated graphics output during the last call to Compute. The data for each graphic is in the form of the raw image bytes in whatever format you reuested via the GraphicsFormat property.

Definition

Namespace: Wolfram.NETLink
Assembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
C#
public byte[][] GraphicsBytes { get; }

Property Value

Byte

Remarks

For programs running on Microsoft Windows, or on Linux when using Mono, you might find it more useful to use the Graphics property, which returns the set of graphics as an array of Image objects. The GraphicsBytes property is intended primarily for programs that run in an environment where the Image class is not available (i.e., Mac, and Linux when using dotnet). You must set the CaptureGraphics property to true to use this property.

See Also