cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Learn some foundational elements of JMP Scripting Language (JSL) and how to extend point & click automation into repeatable, shareable routines. Register. June 26, 2 p.m. US Eastern Time.

Discussions

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

Image loading from a hyperlink

Hey! 

I want to perform image loading from a hyperlink, not data table as we have millions of images. Is this possible in JMP?

-Ilmari

2 REPLIES 2
jthi
Super User

Re: Image loading from a hyperlink

Just using Open() might work for simple cases

Names Default To Here(1);

img = Open("https://www.jmp.com/en/company/media_10eeb65ad6a836677c8ff6b12e9d88dd4be7aa9e8.png");

nw = New Window("",
	img
);
-Jarmo
jthi
Super User

Re: Image loading from a hyperlink

Or New HTTP Request

Names Default To Here(1);

req = New HTTP Request(
	url("https://www.jmp.com/en/company/media_10eeb65ad6a836677c8ff6b12e9d88dd4be7aa9e8.png"),
	Method("GET")
);
data = req << send;

img = New Image(data);

nw = new window("",
	img
);
-Jarmo

Recommended Articles