cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

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

How to enlarge pictures with JSL?

Big Class Families.jmp

Thanks!

2023-04-18_10-18-25.png

1 REPLY 1
jthi
Super User

Re: How to enlarge pictures with JSL?

<< Scale is one option

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class Families.jmp");

wait(1);
Column(dt, "Picture") << Set Each Value(
	img = :picture;
	img << scale(3);
	img;
);
-Jarmo

Recommended Articles