This is a read and write property.
This property controls the Y resolution (height in pixels) at which presentations and graphics are converted. The default value is 0, which means HTML Export retains the original resolution.
This property is set in conjunction with cxVectorToRasterXRes. You can specify the resolution in one of two ways:
as a proportion of the original resolution
as a specified number of pixels
To set the resolution proportionally
Set cxVectorToRasterXRes to a percentage of the original resolution. For example, the following setting converts the graphic at 50 percent of the original resolution:
cxVectorToRasterXRes=-50
The following setting converts the graphic at 200 percent of the original resolution:
cxVectorToRasterXRes=-200
cyVectorToRasterYRes must be set to 0. The Y resolution is automatically adjusted to maintain the aspect ratio. If both cxVectorToRasterXRes and cyVectorToRasterYRes are set to a percentage, cyVectorToRasterYRes defaults to 0 during the conversion.
To set the resolution in pixels
Set either cxVectorToRasterXRes or cyVectorToRasterYRes to the number of pixels. For example:
cxVectorToRasterXRes=0
cyVextorToRasterYRes=1500
The property that is set to 0 is automatically adjusted to maintain the aspect ratio. Only one property should be set to the number of pixels. The other property should be set to 0.
|
|