Platform Explorer / Nuxeo Platform LTS 2019 10.10

Contribution org.nuxeo.ecm.platform.pictures.tiles.default.config--environment

This contribution is part of XML component org.nuxeo.ecm.platform.pictures.tiles.default.config inside nuxeo-platform-imaging-tiling-10.10.jar /OSGI-INF/pictures-tiles-contrib.xml

Extension Point

Extension point environment of component PictureTilingComponent.

Registration Order

0
The registration order represents the order in which this contribution was registered on its target extention point. This will impact the override/merge behaviour when it is implemented on the target service, and is useful for proper customization of existing contributions.
You can influence this order by adding "require" tags in the containing component declaration, to make sure it is resolved after another component (see "Resolution Order" on components).

Contributed Items

  • <environment>
          <parameters>
            <!-- Gimp path variables -->
            <parameter name="GimpExecutable">gimp</parameter>
            <!-- ImageMagick path variables -->
            <parameter name="IMConvert">convert</parameter>
            <parameter name="IMIdentify">identify</parameter>
            <parameter name="IMStream">stream</parameter>
            <!-- global env variables -->
            <parameter name="WorkingDirPath">/opt/nuxeo-server-10.10-tomcat/tmp</parameter>
            <!-- Max Disk cache usage in KB -->
            <parameter name="MaxDiskSpaceUsageForCache">50000</parameter>
            <!-- GC Interval in Minutes -->
            <parameter name="GCInterval">10</parameter>
    
            <!-- Image dimensions threshold tiling activation -->
            <parameter name="WidthThreshold">1200</parameter>
            <parameter name="HeightThreshold">1200</parameter>
          </parameters>
        </environment>

XML Source

<extension point="environment" target="org.nuxeo.ecm.platform.pictures.tiles.service.PictureTilingComponent">
    <environment>
      <parameters>
        <!-- Gimp path variables -->
        <parameter name="GimpExecutable">gimp</parameter>
        <!-- ImageMagick path variables -->
        <parameter name="IMConvert">convert</parameter>
        <parameter name="IMIdentify">identify</parameter>
        <parameter name="IMStream">stream</parameter>
        <!-- global env variables -->
        <parameter name="WorkingDirPath">/opt/nuxeo-server-10.10-tomcat/tmp</parameter>
        <!-- Max Disk cache usage in KB -->
        <parameter name="MaxDiskSpaceUsageForCache">50000</parameter>
        <!-- GC Interval in Minutes -->
        <parameter name="GCInterval">10</parameter>

        <!-- Image dimensions threshold tiling activation -->
        <parameter name="WidthThreshold">1200</parameter>
        <parameter name="HeightThreshold">1200</parameter>
      </parameters>
    </environment>
  </extension>