Package magick
Class ProfileInfo
- java.lang.Object
-
- magick.ProfileInfo
-
public class ProfileInfo extends java.lang.Object
Deprecated.This class is only needed for the old (ImageMagick 5.5.7 ?) methods get/setColorProfile() and get/setIptcProfile(). Recommended is to use the new generic methods getImageProfile() and setImageProfile() insteadClass encapsulating some profile related to a image. This class corresponds to the ProfileInfo structure in the C API. ProfileInfo is currently used in the Image structure to store the ICC and IPTC profiles.- Author:
- Eric Yeo <ttey@yeo.nu>
- See Also:
MagickImage.setColorProfile(magick.ProfileInfo)
-
-
Constructor Summary
Constructors Constructor Description ProfileInfo()
Deprecated.Constructor.ProfileInfo(java.lang.String name, byte[] info)
Deprecated.Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description byte[]
getInfo()
Deprecated.Get the profile info.java.lang.String
getName()
Deprecated.Get the profile name.void
setInfo(byte[] info)
Deprecated.Set the profile info.void
setName(java.lang.String name)
Deprecated.Set the profile name.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Deprecated.Get the profile name.- Returns:
- the profile name
-
setName
public void setName(java.lang.String name)
Deprecated.Set the profile name.
-
getInfo
public byte[] getInfo()
Deprecated.Get the profile info.- Returns:
- the profile info
-
setInfo
public void setInfo(byte[] info)
Deprecated.Set the profile info.
-
-