
Apache::AxKit::Plugin::SvgCgiSerialize - CGI-Parameter Plugin

AddHandler axkit .svg
## Fairly important to cache the output because
## transformation is highly CPU-Time and Memory consuming
AxCacheDir /tmp/axkit_cache
## When using SvgCgiSerialize this is vital
## because the cgi-parameters are not used
## by default to build the cache
AxAddPlugin Apache::AxKit::Plugin::QueryStringCache
<Files ~ *.svg>
AxAddStyleMap application/svg2anyformat Apache::AxKit::Language::Svg2AnyFormat
AxAddProcessor application/svg2anyformat NULL
## optional with this variable you can
## overwrite the default output format
## PNG
## Supported Values:
## image/jpeg
## image/png
## image/gif
## application/pdf
PerlSetVar SVGOutputMimeType image/jpeg
## optional module to pass the format using cgi-parameters
## to the module. For supported values see above
## and the man-page of the plugin
AxAddPlugin Apache::AxKit::Plugin::SvgCgiSerialize
</Files>

This plugin reads out the CGI-Parameter mime_type and passes it into the Module.

0.01

Apache::AxKit::Language::Svg2AnyFormat

Tom Schindl <tom.schindl@bestsolution.at>