クラスjava.awt.color.ICC_Profile
の使用

ICC_Profileを使用するパッケージ
パッケージ 説明
java.awt.color
カラー・スペースのクラスを提供します。
java.awt.image
イメージを作成および修正するためのクラスを提供します。
  • java.awt.colorでのICC_Profileの使用

    java.awt.colorでのICC_Profileのサブクラス
    修飾子と型 クラス 説明
    class  ICC_ProfileGray
    ICC_ProfileGrayクラスは、次の条件を満たすプロファイルを表すICC_Profileクラスのサブクラスです。: プロファイルのカラー・スペース・タイプはTYPE_GRAYで、このプロファイルにはgrayTRCTagタグとmediaWhitePointTagタグが含まれています。
    class  ICC_ProfileRGB
    ICC_ProfileRGBクラスは、次の条件を満たすプロファイルを表すICC_Profileクラスのサブクラスです。: プロファイルのカラー・スペース・タイプはRGBで、このプロファイルにはredColorantTaggreenColorantTagblueColorantTagredTRCTaggreenTRCTagblueTRCTagmediaWhitePointTagタグが含まれます。
    ICC_Profileを返すjava.awt.colorのメソッド
    修飾子と型 メソッド 説明
    static ICC_Profile ICC_Profile.getInstance​(byte[] data)
    バイト配列内のデータに対応するICC_Profileオブジェクトを構築します。
    static ICC_Profile ICC_Profile.getInstance​(int cspace)
    ColorSpaceクラス(例CS_sRGB)で定義された特定のカラー・スペースの1つに対応するICC_Profileを構築します。
    static ICC_Profile ICC_Profile.getInstance​(InputStream s)
    InputStreamのデータに対応するICC_Profileを構築します。
    static ICC_Profile ICC_Profile.getInstance​(String fileName)
    ファイル内のデータに対応するICC_Profileを構築します。
    ICC_Profile ICC_ColorSpace.getProfile()
    このICC_ColorSpaceICC_Profileを返します。
    ICC_Profile型のパラメータを持つjava.awt.colorのコンストラクタ
    コンストラクタ 説明
    ICC_ColorSpace​(ICC_Profile profile)
    ICC_Profileオブジェクトから新規ICC_ColorSpaceを構築します。
  • java.awt.imageでのICC_Profileの使用

    ICC_Profileを返すjava.awt.imageのメソッド
    修飾子と型 メソッド 説明
    ICC_Profile[] ColorConvertOp.getICC_Profiles()
    このColorConvertOpを構築するために使用されるICC_Profileの配列を返します。
    ICC_Profile型のパラメータを持つjava.awt.imageのコンストラクタ
    コンストラクタ 説明
    ColorConvertOp​(ICC_Profile[] profiles, RenderingHints hints)
    ICC_Profileの配列から新しいColorConvertOpを構築します。