Implementation of ActiveX (TIFF Add-On for IE) control to HTML

The TIFF Add-On for Internet Explorer can be inserted in HTML page in several ways:

1. As inline frame (recommended). The main advantage is very simple code. No base path not needed:
<iframe width="100%" height="600" Src="yourfile.tif"></iframe>

2. As ActiveX object. The absolute path should be specified as "base" parameter:
<object width="100%" height="600"
classid="CLSID:13800D89-E2E4-42A1-A64D-EECB57CFD8AC">
<param name="src" value="yourfile.tif">
<param name="base" value="http://www.yoursite.com/">
<embed width="100%" height="600">
</object>

3. With "embed" tag. The absolute path should be specified as "base" parameter:
<embed width="100%" height="600" base="http://www.yoursite.com/"
src="yourfile.tif" type="image/tiff">

4. The TIFF file can be opened with Add-On for IE by clicking on a link which points to a TIFF file:
http://www.adeoimaging.com/test.tif

Copyright 2001-2024 ADEO Imaging LLC. All rights reserved. | About us | Contact us | Software Development | Reseller Info | Links
Homepage