PsConverterToImageOptions

Inheritance: java.lang.Object、com.aspose.eps.plugins.PsConverterOptions

public class PsConverterToImageOptions extends PsConverterOptions

プラグイン PsConverter 用の PS/EPS から画像へのコンバータオプションを表します。

コンストラクタ

コンストラクタ説明
PsConverterToImageOptions()新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。
PsConverterToImageOptions(ImageFormat imageFormat)画像フォーマットを指定して新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。
PsConverterToImageOptions(Dimension size)結果画像のサイズを指定して新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。
PsConverterToImageOptions(ImageFormat imageFormat, Dimension size)画像フォーマットを指定して新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。

メソッド

メソッド説明
addDataSource(IDataSource dataSource)PsConverter プラグインのデータコレクションに新しいデータソースを追加します。
addSaveDataSource(IDataSource saveDataSource)PsConverterOptions プラグインのデータコレクションに新しいデータソースを追加します。
equals(Object arg0)
getAdditionalFontsFolders()コンバータが入力ドキュメントのフォントを検索すべき追加のフォントフォルダーを返します。
getClass()
getDataCollection()PsConverterOptions プラグインのデータコレクションを返します。
getExceptions()致命的でないエラーのリストを返します。
getImageFormat()画像形式を取得します。
getJpegQualityLevel()画像の圧縮レベルを指定する値を返します。
getOperationName()操作名を返します。
getResolution()画像の解像度を取得します。
getSaveTargetsCollection()保存操作結果のために追加されたターゲットのコレクションを取得します。
getSize()結果画像のサイズを取得します。
getSmoothingMode()画像のレンダリングに使用するスムージングモードを取得します。
hashCode()
isDebug()変換中の警告やメッセージの出力を許可するフラグを取得します。
isSupressErrors()変換中にエラーが抑制されるかどうかを示す値を返します。
notify()
notifyAll()
setAdditionalFontsFolders(String[] fontsFolders)コンバータが入力ドキュメントのフォントを検索すべき追加のフォントフォルダーを指定します。
setDebug(boolean debug)変換中の警告やメッセージの出力を許可するフラグを指定します。
setImageFormat(ImageFormat imageFormat)画像形式を取得します。
setJpegQualityLevel(int value)画像の圧縮レベルを指定する値を設定します。
setResolution(int resolution)画像の解像度を設定します。
setSize(Dimension size)結果画像のサイズを設定します。
setSmoothingMode(SmoothingMode smoothingMode)画像のレンダリングに使用するスムージングモードを設定します。
setSupressErrors(boolean supressErrors)変換中にエラーが抑制されるかどうかを示すフラグを指定します。
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

PsConverterToImageOptions()

public PsConverterToImageOptions()

新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。

PsConverterToImageOptions(ImageFormat imageFormat)

public PsConverterToImageOptions(ImageFormat imageFormat)

画像フォーマットを指定して新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。

Parameters:

パラメータ説明
imageFormatImageFormat結果画像のフォーマット。

PsConverterToImageOptions(Dimension size)

public PsConverterToImageOptions(Dimension size)

結果画像のサイズを指定して新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。

Parameters:

パラメータ説明
sizejava.awt.Dimension結果画像のサイズ。

PsConverterToImageOptions(ImageFormat imageFormat, Dimension size)

public PsConverterToImageOptions(ImageFormat imageFormat, Dimension size)

画像フォーマットを指定して新しい PsConverterToImageOptions オブジェクトのインスタンスを初期化します。

Parameters:

パラメータ説明
imageFormatImageFormat結果画像のフォーマット。
sizejava.awt.Dimension

addDataSource(IDataSource dataSource)

public final void addDataSource(IDataSource dataSource)

PsConverter プラグインのデータコレクションに新しいデータソースを追加します。

Parameters:

パラメータ説明
dataSourceIDataSource追加するデータ ソース。

addSaveDataSource(IDataSource saveDataSource)

public final void addSaveDataSource(IDataSource saveDataSource)

PsConverterOptions プラグインのデータコレクションに新しいデータソースを追加します。

Parameters:

パラメータ説明
saveDataSourceIDataSource保存操作結果のためのデータ ソース(ファイルまたはストリーム)。

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

パラメータ説明
arg0java.lang.Object

Returns: boolean

getAdditionalFontsFolders()

public String[] getAdditionalFontsFolders()

コンバータが入力ドキュメントのフォントを検索すべき追加のフォントフォルダーを返します。デフォルトのフォルダーは、OS が内部で使用するフォントを検索する標準フォントフォルダーです。

Returns: java.lang.String[] - フォントフォルダーの配列。

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getDataCollection()

public final List<IDataSource> getDataCollection()

PsConverterOptions プラグインのデータコレクションを返します。

Returns: java.util.List<com.aspose.page.plugins.IDataSource>

getExceptions()

public List<Exception> getExceptions()

致命的でないエラーのリストを返します。

Returns: java.util.List<java.lang.Exception> - 例外リスト

getImageFormat()

public ImageFormat getImageFormat()

画像形式を取得します。

Returns: ImageFormat - An image format.

getJpegQualityLevel()

public int getJpegQualityLevel()

画像の圧縮レベルを指定する値を返します。利用可能な値は 0 から 100 です。指定した数値が小さいほど圧縮率が高くなり、画像の品質は低くなります。0 の場合は最低品質の画像になり、100 の場合は最高品質になります。

Returns: int - 画像の圧縮レベルを指定する値。

getOperationName()

public final String getOperationName()

操作名を返します。

Returns: java.lang.String

getResolution()

public int getResolution()

画像の解像度を取得します。

Returns: int - 画像の解像度。

getSaveTargetsCollection()

public final List<IDataSource> getSaveTargetsCollection()

保存操作結果のために追加されたターゲットのコレクションを取得します。

Returns: java.util.List<com.aspose.page.plugins.IDataSource>

getSize()

public Dimension getSize()

結果画像のサイズを取得します。

Returns: java.awt.Dimension - 画像のサイズ。

getSmoothingMode()

public SmoothingMode getSmoothingMode()

画像のレンダリングに使用するスムージングモードを取得します。

Returns: SmoothingMode - A smoothing mode.

hashCode()

public native int hashCode()

Returns: int

isDebug()

public boolean isDebug()

変換中の警告やメッセージの出力を許可するフラグを取得します。

Returns: boolean - デバッグ値。

isSupressErrors()

public boolean isSupressErrors()

変換中にエラーが抑制されるかどうかを示す値を返します。

Returns: boolean - 真偽値

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setAdditionalFontsFolders(String[] fontsFolders)

public void setAdditionalFontsFolders(String[] fontsFolders)

コンバータが入力ドキュメントのフォントを検索すべき追加のフォントフォルダーを指定します。デフォルトのフォルダーは、OS が内部で使用するフォントを検索する標準フォントフォルダーです。

Parameters:

パラメータ説明
fontsFoldersjava.lang.String[]フォントフォルダーの配列です。

setDebug(boolean debug)

public void setDebug(boolean debug)

変換中の警告やメッセージの出力を許可するフラグを指定します。

Parameters:

パラメータ説明
debugbooleanブール値です。

setImageFormat(ImageFormat imageFormat)

public void setImageFormat(ImageFormat imageFormat)

画像形式を取得します。

Parameters:

パラメータ説明
imageFormatImageFormat結果画像のフォーマット。

setJpegQualityLevel(int value)

public void setJpegQualityLevel(int value)

画像の圧縮レベルを指定する値を設定します。利用可能な値は 0 から 100 です。指定した数値が小さいほど圧縮率が高くなり、画像の品質は低くなります。0 の場合は最低品質の画像になり、100 の場合は最高品質になります。

Parameters:

パラメータ説明
valueint画像の圧縮レベルを指定する値。

setResolution(int resolution)

public void setResolution(int resolution)

画像の解像度を設定します。

Parameters:

パラメータ説明
解像度int結果画像の解像度。

setSize(Dimension size)

public void setSize(Dimension size)

結果画像のサイズを設定します。

Parameters:

パラメータ説明
sizejava.awt.Dimension結果画像のサイズ。

setSmoothingMode(SmoothingMode smoothingMode)

public void setSmoothingMode(SmoothingMode smoothingMode)

画像のレンダリングに使用するスムージングモードを設定します。

Parameters:

パラメータ説明
smoothingModeSmoothingMode平滑化モード。

setSupressErrors(boolean supressErrors)

public void setSupressErrors(boolean supressErrors)

変換中にエラーが抑制されるかどうかを示すフラグを指定します。

Parameters:

パラメータ説明
supressErrorsbooleanブール値です。

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

パラメータ説明
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

パラメータ説明
arg0long
arg1int