cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • See how to interactively organize and restructure data for analysis. Register for May 29 webinar, 2pm US ET.

Discussions

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

How to set JPG dimensions in PictureBox?

Can this be done, that is, can a message be sent to a Picture Box to set the incoming JPG's height and width dimensions in pixels?  I can grab the picture and modify its dimensions, so I'd presume it's JSL scriptable?


Else, if not, is there another Display Box which can set a graphics file (e.g. JPG) dimensions?  thx... dj

1 ACCEPTED SOLUTION

Accepted Solutions
djhanson
Level V

Re: How to set JPG dimensions in PictureBox?

cool.. it's <<set size() of course.  makes sense...   so if it helps anyone in the future, it's like:

opfile=open("C:\temp\mypic.jpg", jpg);

opfile<<set size({300, 300});

new window("my window", picturebox(opfile));

View solution in original post

1 REPLY 1
djhanson
Level V

Re: How to set JPG dimensions in PictureBox?

cool.. it's <<set size() of course.  makes sense...   so if it helps anyone in the future, it's like:

opfile=open("C:\temp\mypic.jpg", jpg);

opfile<<set size({300, 300});

new window("my window", picturebox(opfile));

Recommended Articles