cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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));