cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
lala
Level IX

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 IX

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

OK

img = p1 << getpicture ;
lala
Level IX

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

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

Recommended Articles