http://onionworks.net/2006/imageservice/encoders

createTlaEncoder ([password : string]) : nodeset

Mit dieser Methode lässt sich ein Bild ins TLA Bildformat wandeln. Es ist möglich dieses Bildformat zu verschlüsseln. Der Schlüssel ist anschließend notwendig um das Bild zu betrachten und um Veränderungen vorzunehmen.

Im folgenden Beispiel ist die Anwendung dargestellt.

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ise="http://onionworks.net/2006/imageservice/encoders" xmlns:is="http://onionworks.net/2006/imageservice" xmlns:b="http://onionworks.net/2004/renderengine/binary" xmlns:onion="http://onionworks.net/2004/data" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" indent="no" />
<xsl:template match="/resource">
<xsl:variable name="workspace" select="is:createWorkspace(@src, true())" />
<xsl:variable name="doWrite" select="is:writeWorkspace($workspace, ise:createTlaEncoder('passwort'))" />
<b:output mimeType="image/tla">
<b:webResponse expires="60" dispositionType="attachment" filename="TlaEncoderBeispiel" />
</b:output>
</xsl:template>
</xsl:stylesheet>
Beispiel TLA Encoder

In diesem Beispiel wird ein Bild im TLA Bildformat mit dem Passwort "passwort" erstellt.