It is now possible to embed 3D images in a PDF document.
It is performed by using the <img> element.
<img src="dice.pdf"/>
As described above, specify the page number which you want to embed to the URI. When there is no page number specified, the first page will be embedded. When there is no size specified, it's embedded in the page size of the PDF where it's embedded. However if you want to scale the size, `width` or `height` CSS properties can be specified as follows:
<img src="embedded.pdf#page=3" style="width: 50%;"/>
When specifying PDF by utilizing the data scheme (RFC2397), the page number can be specified as the parameter of the media type as follows.
<img src="data:application/pdf;page=3;base64,JVBERi0xLjQKJeLjz9M..."/>
A dummy image will be displayed in GUI.
The next block is as follows.
<img src="embedded.pdf#page=1" style="width: 50%;"/>
Embed PDF