ITiffOptions
All Implemented Interfaces: com.aspose.slides.ISaveOptions
public interface ITiffOptions extends ISaveOptions
Provides options that control how a presentation is saved in TIFF format.
Methods
Method | Description |
---|---|
getImageSize() | Specifies size of a generated TIFF image. |
setImageSize(Dimension value) | Specifies size of a generated TIFF image. |
getDpiX() | Specifies the horizontal resolution in dots per inch. |
setDpiX(long value) | Specifies the horizontal resolution in dots per inch. |
getDpiY() | Specifies the vertical resolution in dots per inch. |
setDpiY(long value) | Specifies the vertical resolution in dots per inch. |
getShowHiddenSlides() | Specifies whether the generated document should include hidden slides or not. |
setShowHiddenSlides(boolean value) | Specifies whether the generated document should include hidden slides or not. |
getCompressionType() | Specifies the compression type. |
setCompressionType(int value) | Specifies the compression type. |
getPixelFormat() | Specifies the pixel format for the generated images. |
setPixelFormat(int value) | Specifies the pixel format for the generated images. |
getNotesCommentsLayouting() | Provides options that control how notes and comments is placed in exported document. |
getImageSize()
public abstract Dimension getImageSize()
Specifies size of a generated TIFF image. Default value is 0x0, what means that generated image sizes will be calculated based on presentation slide size value. Read/write java.awt.Dimension.
Returns: java.awt.Dimension
setImageSize(Dimension value)
public abstract void setImageSize(Dimension value)
Specifies size of a generated TIFF image. Default value is 0x0, what means that generated image sizes will be calculated based on presentation slide size value. Read/write java.awt.Dimension.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.awt.Dimension |
getDpiX()
public abstract long getDpiX()
Specifies the horizontal resolution in dots per inch. Read/write long.
Returns: long
setDpiX(long value)
public abstract void setDpiX(long value)
Specifies the horizontal resolution in dots per inch. Read/write long.
Parameters:
Parameter | Type | Description |
---|---|---|
value | long |
getDpiY()
public abstract long getDpiY()
Specifies the vertical resolution in dots per inch. Read/write long.
Returns: long
setDpiY(long value)
public abstract void setDpiY(long value)
Specifies the vertical resolution in dots per inch. Read/write long.
Parameters:
Parameter | Type | Description |
---|---|---|
value | long |
getShowHiddenSlides()
public abstract boolean getShowHiddenSlides()
Specifies whether the generated document should include hidden slides or not. Default is false.
Returns: boolean
setShowHiddenSlides(boolean value)
public abstract void setShowHiddenSlides(boolean value)
Specifies whether the generated document should include hidden slides or not. Default is false.
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean |
getCompressionType()
public abstract int getCompressionType()
Specifies the compression type. Read/write TiffCompressionTypes.
Returns: int
setCompressionType(int value)
public abstract void setCompressionType(int value)
Specifies the compression type. Read/write TiffCompressionTypes.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
getPixelFormat()
public abstract int getPixelFormat()
Specifies the pixel format for the generated images. Read/write ImagePixelFormat.
Returns: int
setPixelFormat(int value)
public abstract void setPixelFormat(int value)
Specifies the pixel format for the generated images. Read/write ImagePixelFormat.
Parameters:
Parameter | Type | Description |
---|---|---|
value | int |
getNotesCommentsLayouting()
public abstract INotesCommentsLayoutingOptions getNotesCommentsLayouting()
Provides options that control how notes and comments is placed in exported document.
Returns: INotesCommentsLayoutingOptions