[RPG] How to show a image in a html file

Please do not use to report errors- use your regional help desk.
Please mark posts as being for RPG or RDMLX (LANSA) developer.
To subscribe by email, display this forum, scroll to the end and select ‘Subscribe Forum’.
Post Reply
Taku Izumi
Posts: 12
Joined: Wed Jul 10, 2013 12:23 pm

[RPG] How to show a image in a html file

Post by Taku Izumi »

Hi,

I am trying to show a image in a html file.
So, I created the following codes, however a image set to the resource property of Webview is not shown.
Sample.html and emploee_128.png are in resource folder.
I use iPhone for testing of this.
Does anyone know a solution?

DDS

Code: Select all

4  1'&&F'
4 10'<<WEBVIEW>>'       
4 10HTML('Type: WebView 
    Border.Thickness: 1 
    AllowZoom : Y       
    Border.Color: Blue')
RPG

Code: Select all

LRNG_SetProperty('/Form.Fields.WEBVIEW.RESOURCE':'employee_128.png');
LRNG_SetProperty('/Form.Fields.WEBVIEW.URL': 'Sample.html');
Sample.html

Code: Select all

<body>
	<img src="employee_128.png">
</body>
Regards,
Taku Izumi
jasonzhou
Posts: 130
Joined: Wed Jan 11, 2017 3:26 pm

Re: [RPG] How to show a image in a html file

Post by jasonzhou »

Can you please try out the following code:

Code: Select all

<body>
	<img src="/app/resources/employee_128.png">
</body>
Taku Izumi
Posts: 12
Joined: Wed Jul 10, 2013 12:23 pm

Re: [RPG] How to show a image in a html file

Post by Taku Izumi »

Hi,

I changed the html code but still not show a image.

Next, I changed the html to the original source code and executed with the Windows, the image was shown.

Result_of_WinApp.png
Result_of_WinApp.png (13.23 KiB) Viewed 42608 times

This code is Windows OK, iPhone NG.

Code: Select all

<body>
	<img src="employee_128.png">
</body>
This code is NG with both Windows and iPhone.

Code: Select all

<body>
	<img src="/app/resources/employee_128.png">
</body>
Best regards,
Taku
jasonzhou
Posts: 130
Joined: Wed Jan 11, 2017 3:26 pm

Re: [RPG] How to show a image in a html file

Post by jasonzhou »

Hi Taku,

I put your code in my demo program, it works ok on iPhone.

Attached is my demo, it's almost exactly same as your code. Can you please run it seeing if it works ok?

Thanks
Jason
Attachments
sample.zip
(2.06 KiB) Downloaded 424 times
Taku Izumi
Posts: 12
Joined: Wed Jul 10, 2013 12:23 pm

Re: [RPG] How to show a image in a html file

Post by Taku Izumi »

Hi Jason,

Thank you for your sample.
Your sample works OK in my iPhone.

So, I will check a difference between your sample and my one.

Best regards,
Taku
Post Reply