Restrictions and limitations

This section describes restrictions and limitations that have been identified for this component.

  • The default maximum image size this component can process is 8400 x 8400 pixels. The maximum size can be increased by adjusting the coding. For example, to increase the maximum image size to 32000 x 32000 pixels, adjust the CSDK Settings as follows:
    CSDKSettings settings = loadWorkflow.Settings.Setting as CSDKSettings;
                    settings.Kernel.Img.Max.Pix.X = 32000;
                    settings.Kernel.Img.Max.Pix.Y = 32000;
                    //settings.Kernel.Img.Rotation.Value = Kernel.Img.RotationSetting.ValueEnum.ROT_NO;
    

    The above code change results in a new setting in the Job XML in the "input" JobItem as follows:

    
    <Settings>
    <Setting settingname="Kernel.IMG.Max.Pix.X" type="integer" value="32000" />
    <Setting settingname="Kernel.IMG.Max.Pix.Y" type="integer" value="32000" />
    </Settings>