cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Check out the JMP® Marketplace featured Capability Explorer add-in
Choose Language Hide Translation Bar
lala
Level VIII

How to save JMP drawings to a variable by reading them as binary files in JSL?

It do not need to save the local image file first.
Instead, the graph is written directly into a variable as a binary file in PNG format

Thanks!

dt=Open("$SAMPLE_DATA/Big Class.jmp");
p1 = dt << Graph Builder(
	Variables( X( :weight ), Y( :height ), Group X( :age ), Color( :sex ) ),
	Elements( Bar( X, Y, Legend( 5 ), Response Axis( "X" ) ) )
);
2 REPLIES 2
lala
Level VIII

回复: How to save JMP drawings to a variable by reading them as binary files in JSL?

OK

img = p1 << getpicture ;
lala
Level VIII

回复: How to save JMP drawings to a variable by reading them as binary files in JSL?

2024-03-05_16-35-13.png