3D images implementation in Ignition - perspective module

Hi,
i am looking for any sample application or is anyone have done the implementation of 3D images in Ignition perspective module.

Is it possible? if so let me know.
or using which 3rd party software or software can be used to implement it?

There are several threads on this forum on the subject. Have a browse here: Search results for 'perspective 3d images' - Inductive Automation Forum

If you just want to display a 3D render of an image in your Perspective project, you can use Three.js to render and load the image using ObjectLoader() and host the instance on a seperate server for example (or locally if it's just for testing purposes). You'd then display the object in Perspective via the iFrame component.

I did something similar albeit not via Three.js but using one of those free online rendering websites. If you want to go via the Three.js route I think you'd need some way of implementing the pan zoom options (there's a resource on Ignition Exchange I believe) and user interactivity - perhaps via the Web Dev module.

any sample application if you could share?

I have some local projects and test environments I've been messing around with, though it's all a scramble. If I find something useful I'll share it with you.

The iframe + Three.js route others mention is the right architecture … The hard part is not the iframe itself, it is loading the CAD as GLB, the camera, and binding live tags so it actually animates.

Since you asked specifically about third-party tools: … One open-source option is realvirtual WEB (AGPL): it loads GLB, has a built-in simulation, and can take live values over WebSocket or MQTT … Disclosure: I work on it, so treat it as one option, not the only one.