⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 magickinfo.java

📁 手机图像自动转换
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -