Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 1 of 1 total
Thread Request image from module
Fri, Dec 27 2019 12:43 AMPermanent Link

KimHJ

Comca Systems, Inc

Does anyone have an example how to request an image from the web serve module and send it back to a TImage.

I have a form with a TImage and I need to display a current Image.

The database have the location of the image on the server.

like: 'C:\myimages\images.png

Can I use the same method as the PDF example and add this or do I need to use the TPlugin?

  TImage.URL := 'modules/pdfmodule?user=Demo&password=Password'+
                    '&method=load&name='+"C:\myimages\images.png";

and this in the module:

 if FileExists(TempFileName) then
                 begin
                 TempFileStream:=TFileStream.Create(TempFileName,(fmOpenRead or fmShareDenyNone));
                 try
                    Request.SendCustomContentStream(TempFileStream,'application/image/png','inline; filename="'+TempRootFileName+'"');
                 finally
                    FreeAndNil(TempFileStream);
                 end;

Thanks,
Kim
Image