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

📄 hssfpicturedata.java

📁 java 读写word excel ppt
💻 JAVA
字号:
/* ====================================================================   Copyright 2002-2004   Apache Software Foundation   Licensed under the Apache License, Version 2.0 (the "License");   you may not use this file except in compliance with the License.   You may obtain a copy of the License at       http://www.apache.org/licenses/LICENSE-2.0   Unless required by applicable law or agreed to in writing, software   distributed under the License is distributed on an "AS IS" BASIS,   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   See the License for the specific language governing permissions and   limitations under the License.==================================================================== */package org.apache.poi.hssf.usermodel;import org.apache.poi.ddf.EscherBitmapBlip;/** * Represents binary data stored in the file.  Eg. A GIF, JPEG etc... * * @author Daniel Noll */public class HSSFPictureData{    // MSOBI constants for various formats.    public static final short MSOBI_WMF   = 0x2160;    public static final short MSOBI_EMF   = 0x3D40;    public static final short MSOBI_PICT  = 0x5420;    public static final short MSOBI_PNG   = 0x6E00;    public static final short MSOBI_JPEG  = 0x46A0;    public static final short MSOBI_DIB   = 0x7A80;    // Mask of the bits in the options used to store the image format.    public static final short FORMAT_MASK = (short) 0xFFF0;    /**     * Underlying escher blip record containing the bitmap data.     */    private EscherBitmapBlip blip;    /**     * Constructs a picture object.     *     * @param blip the underlying blip record containing the bitmap data.     */    HSSFPictureData( EscherBitmapBlip blip )    {        this.blip = blip;    }    /**     * Gets the picture data.     *     * @return the picture data.     */    public byte[] getData()    {        return blip.getPicturedata();    }    /**     * Suggests a file extension for this image.     *     * @return the file extension.     */    public String suggestFileExtension()    {        switch (blip.getOptions() & FORMAT_MASK)        {            case MSOBI_WMF:                return "wmf";            case MSOBI_EMF:                return "emf";            case MSOBI_PICT:                return "pict";            case MSOBI_PNG:                return "png";            case MSOBI_JPEG:                return "jpeg";            case MSOBI_DIB:                return "dib";            default:                return "";        }    }}

⌨️ 快捷键说明

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