cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
lala
Level VII

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