PrizmDoc Hybrid Viewing: Reduce server viewing requirements and streamline document processing
Read More
Enable your employees to remain productive throughout the document management process.
Learn how SmartZone uses a regular expression engine integrated into the recognition engine to achieve the best possible accuracy on data that can be defined by a regular expression.
The tale of how an underdog is going head-to-head with a tech giant (and winning).
We are using the Webforms Samples and want to know how to enable the “Always User Raster” feature. Which file needs to be modified and how should it be modified?
In order to enable the “Always Use Raster” option for our Webforms sample, you will need to do the following:
How To:
\Prizm\Samples\dotnet\webforms\full-viewer-sample\Default.aspx
Line to Replace:
} else { sessionData.source = getDocumentSource(query.document || ''); }
Replace with:
} else { sessionData.source = getDocumentSource(query.document || ''); sessionData.render = { html5: { alwaysUseRaster: true } }; }
Next, to update the Central Configuration file you will need to stop the Prizm Services.
Make a backup of the prizm\prizm-services-config.yml file.
Edit the .yml file and remove the leading # for the following line and add true to the array so that it looks like the following:
viewing.sessionConstraints.render.alwaysUseRaster.allowedValues: [true, false]