IKernelLinkEvaluateToImageBytes(String, Int32, Int32) Method
Sends the code to evaluate as a string.
Namespace: Wolfram.NETLinkAssembly: Wolfram.NETLink (in Wolfram.NETLink.dll) Version: 2.0.0.0
byte[] EvaluateToImageBytes(
string s,
int width,
int height
)
Function EvaluateToImageBytes (
s As String,
width As Integer,
height As Integer
) As Byte()
array<unsigned char>^ EvaluateToImageBytes(
String^ s,
int width,
int height
)
abstract EvaluateToImageBytes :
s : string *
width : int *
height : int -> byte[]
- s String
- The string to evaluate.
- width Int32
- The desired image width, in pixels. Pass 0 for Automatic, or if the expression itself specifies the width.
- height Int32
- The desired image height, in pixels. Pass 0 for Automatic, or if the expression itself specifies the height.
Byte
The resulting Image, or null if
s does not evaluate to a graphics expression or if a MathLinkException occurred.