LoadOptions Class

Summary: Represents the loading options.

Module: aspose.imaging

Full Name: aspose.imaging.LoadOptions

Aspose.Imaging Version: 24.6.0

Constructors

NameDescription
LoadOptions()Initializes a new instance of the LoadOptions.

Properties

NameTypeAccessDescription
buffer_size_hintintr/wGets or sets the buffer size hint which is defined max allowed size for all internal buffers.
concurrent_image_processingboolr/wGets or sets a value indicating whether [concurrent image processing].
data_background_colorColorr/wGets or sets the Image background Color.
data_recovery_modeDataRecoveryModer/wGets or sets the data recovery mode.
use_icc_profile_conversionboolr/wGets or sets a value indicating whether ICC profile conversion should be applied.

Constructor: LoadOptions()

 LoadOptions() 

Initializes a new instance of the LoadOptions.

Property: buffer_size_hint

Gets or sets the buffer size hint which is defined max allowed size for all internal buffers.

See also:

Example # 1: The following example shows how to set a memory limit when loading a CMX imag…

Examples

The following example shows how to set a memory limit when loading a CMX image. The memory limit is the maximum allowed size (in megabytes) for all internal buffers.

from aspose.imaging import Image, TextRenderingHint, SmoothingMode, PositioningTypes, LoadOptions
from aspose.imaging.imageoptions import PngOptions, CmxRasterizationOptions
import os

directory = "c:\\aspose.imaging\\issues\\net\\3419\\"
	
# Setting a memory limit of 10 megabytes for a target loaded image.
load_options = LoadOptions()
load_options.buffer_size_hint = 10
with Image.load(os.path.join(directory, "example.cmx"), load_options) as image:
	png_options = PngOptions()
	cmx_spec = CmxRasterizationOptions()
	cmx_spec.text_renderingHint = TextRenderingHint.SINGLE_BIT_PER_PIXEL
	cmx_spec.smoothing_mode = SmoothingMode.ANTI_ALIAS
	cmx_spec.positioning = PositioningTypes.DEFINED_BY_DOCUMENT
	png_options.vector_rasterization_options = cmx_spec
	image.save(os.path.join(directory, "output.png"), png_options)