magickinfo.java

来自「手机图像自动转换」· Java 代码 · 共 51 行

JAVA
51
字号
package magick;/** * Encapsulation of the MagickInfo structure. * * @author Susan Dorr */public class MagickInfo extends Magick {    // Internal handle. Used as pointer to MagickInfo    // structure in memory. We use long (64-bits) for    // portibility.    private long magickInfoHandle = 0;    /**     * Constructor.     */    public MagickInfo(String name)	throws MagickException    {	init(name);    }    /**     * Automated destructor.     */    public void finalize()    {	destroyMagickInfo();     }    /**     * Initialise the MagickInfo structure.     */    public native void init(String name)	throws MagickException;    /**     * Deallocate the MagickInfo structure.     */    private native void destroyMagickInfo();    /**     * Return the description  attribute of the handle.     */    public native String getDescription()	throws MagickException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?