Include image from url

General TRichView support forum. Please post your questions here
Post Reply
gdemers_logilys
Posts: 13
Joined: Mon Jun 16, 2014 1:10 pm

Include image from url

Post by gdemers_logilys »

Hi,

I would like to be able to add a web hosted image so that when I use SaveHTMLToStreamEx, images will be something like <img src="www.website.com/image.jpg" height="42" width="42">.

I copied code from the SharedImages demo but instead of using a local relative page, I used a url.

myURL := 'http://logilys.com/medias/logilys_header_frca.jpg'
gr := RVGraphicHandler.LoadFromFile(myURL);

This gives an error because it tries to add the application path before the http://.

Is there anyway to load from an url ?
Sergey Tkachenko
Site Admin
Posts: 17253
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Re: Include image from url

Post by Sergey Tkachenko »

RVGraphicHandler.LoadFromFile can load only local files. Remote files must be downloaded.
See https://www.trichview.com/forums/viewto ... f=3&t=5247
Post Reply