Did you find this guide helpful?
Some test text!
Web / FAQ / How to load a tiff file?
WebViewer requires the Full API to load a TIFF file. See this guide for how to setup full API.
You can then use the full API to manually create a document, add the TIFF image to the document and load the document in WebViewer:
WebViewer({
path: 'lib',
fullAPI: true,
}, document.getElementById('viewer'))
.then(function(instance) {
var PDFNet = instance.PDFNet;
var newDoc;
PDFNet.runWithoutCleanup(function() {
//create an empty document
return PDFNet.PDFDoc.create()
.then(function(doc) {
newDoc = doc;
newDoc.initSecurityHandler();
newDoc.lock();
return PDFNet.Filter.createURLFilter("./files/test.tif");
})
.then(function(tiffFile) {
return PDFNet.Convert.fromTiff(newDoc, tiffFile);
}).then(function() {
newDoc.unlock();
instance.loadDocument(newDoc);
});
});
});
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales