Public Member Functions | |
Image () throws com.foxit.sdk.PDFException | |
Constructor. More... | |
Image (String path) throws com.foxit.sdk.PDFException | |
Constructor, from an existing image file path. More... | |
Image (byte[] buffer) throws com.foxit.sdk.PDFException | |
Constructor, from a memory buffer. More... | |
Image (FileReaderCallback file_read) throws com.foxit.sdk.PDFException | |
Constructor, with a file read callback object. More... | |
Image (Image arg0) | |
Constructor, with another image object. | |
boolean | addFrame (Bitmap bitmap) throws com.foxit.sdk.PDFException |
Add a bitmap as a frame. (Unsupported DIB formats: e_DIBRgb565 and e_DIB8bppMask) More... | |
Bitmap | getFrameBitmap (int index) throws com.foxit.sdk.PDFException |
Get a frame bitmap, specified by index. More... | |
int | getFrameCount () throws com.foxit.sdk.PDFException |
Get frame count. More... | |
int | getHeight () throws com.foxit.sdk.PDFException |
Get image height. More... | |
int | getType () throws com.foxit.sdk.PDFException |
Get image type. More... | |
int | getWidth () throws com.foxit.sdk.PDFException |
Get image width. More... | |
int | getXDPI () throws com.foxit.sdk.PDFException |
Get DPI for X-axis. More... | |
int | getYDPI () throws com.foxit.sdk.PDFException |
Get DPI for Y-axis. More... | |
boolean | isEmpty () |
Check whether current object is empty or not. More... | |
boolean | saveAs (String file_path) throws com.foxit.sdk.PDFException |
Save current image as an image file. More... | |
boolean | saveAs (StreamCallback file, String file_extension) throws com.foxit.sdk.PDFException |
Save current image as an image file. More... | |
void | setDPIs (int x_dpi, int y_dpi) throws com.foxit.sdk.PDFException |
Set DPI for X-axis and Y-axis. More... | |
Static Public Attributes | |
static final int | e_BMP = 1 |
Image type is BMP. | |
static final int | e_GIF = 4 |
Image type is GIF. | |
static final int | e_JBIG2 = 8 |
Image type is JBIG2. More... | |
static final int | e_JPG = 2 |
Image type is JPG or JPeg. | |
static final int | e_JPX = 6 |
Image type is JPX or JPeg-2000. | |
static final int | e_None = 0 |
Not have image type yet. More... | |
static final int | e_PNG = 3 |
Image type is PNG. | |
static final int | e_TIF = 5 |
Image type is TIF or TIFF. | |
static final int | e_Unknown = -1 |
Unknown image type. | |
Foxit PDF SDK offers following image types:
BMP: bitmap image format. It only support single frame. Foxit PDF SDK supports to load image from a BMP image file, get some basic information, get its bitmap, change its bitmap and save it as an image file.
JPG: joint photographic experts group image format. It only support single frame. Foxit PDF SDK supports to load image from a JPG image file, get some basic information, get its bitmap, change its bitmap and save it as an image file.
PNG: portable network graphics image format. It only support single frame. Foxit PDF SDK supports to load image from a PNG image file, get some basic information, get its bitmap, change its bitmap and save it as an image file.
GIF: graphics interchange format. It supports multiple frames. Foxit PDF SDK supports to load image from a GIF image file, get its size, get its bitmap, change its bitmap and save it as an image file.
TIF: tagged image file format. It supports multiple frames. Foxit PDF SDK supports to load image from a TIF image file, get some basic information, get its bitmap, change its bitmap and save it as an image file.
JPX: JPEG-2000 image format. It only support single frame. Foxit PDF SDK supports to load image from a JPX image file, get its size, get its bitmap, change its bitmap and save it as an image file.
JBIG2: JBIG2 image format. It only support single frame. Foxit PDF SDK supports to load image from a JBIG2 image file, get its size, and save it as an image file. Foxit PDF SDK does not support to get its frame bitmap yet.
com.foxit.sdk.common.Image.Image | ( | ) | throws com.foxit.sdk.PDFException |
Constructor.
This constructor is to construct a new image object (without any data). The image type of this constructed image object would be e_None.
com.foxit.sdk.common.Image.Image | ( | String | path | ) | throws com.foxit.sdk.PDFException |
Constructor, from an existing image file path.
path | A full path of an existing image file. It should not be an empty string. |
com.foxit.sdk.common.Image.Image | ( | byte [] | buffer | ) | throws com.foxit.sdk.PDFException |
Constructor, from a memory buffer.
buffer | A memory buffer. The image file data should be fully loaded in this memory buffer. It should not be null. |
com.foxit.sdk.common.Image.Image | ( | FileReaderCallback | file_read | ) | throws com.foxit.sdk.PDFException |
Constructor, with a file read callback object.
file_read | A ReaderCallback object which is implemented by user to load an image file. It should not be null. |
boolean com.foxit.sdk.common.Image.addFrame | ( | Bitmap | bitmap | ) | throws com.foxit.sdk.PDFException |
Add a bitmap as a frame. (Unsupported DIB formats: e_DIBRgb565 and e_DIB8bppMask)
Currently, this function does not support an image with type e_JBIG2, or e_Unknown .
For supporting image types:
If current image's type is e_TIF, e_GIF, or e_None, this function will add the new bitmap to be the new last frame.
If current image's type is one of other types, which only contains single frame, this function will use the new bitmap to replace the first frame.
bitmap | A valid bitmap as a frame to be added or set. |
Bitmap com.foxit.sdk.common.Image.getFrameBitmap | ( | int | index | ) | throws com.foxit.sdk.PDFException |
Get a frame bitmap, specified by index.
Currently, this function does not support an image with type e_JBIG2. This function can only support to get a frame bitmap which is in following formats: e_DIB8bppMask, e_DIB8bpp, {}, e_DIBRgb32}, e_DIBArgb}. For other unsupported DIB format, this function will return a Bitmap object which's function common::Bitmap::isEmpty returns true.
index | Index of the frame. Valid range: from 0 to (count-1). count is returned by function Image::getFrameCount. |
int com.foxit.sdk.common.Image.getFrameCount | ( | ) | throws com.foxit.sdk.PDFException |
Get frame count.
Currently, this function does not support an image with type e_JBIG2.
int com.foxit.sdk.common.Image.getHeight | ( | ) | throws com.foxit.sdk.PDFException |
Get image height.
If the image has multiple frames, usually the first frame's size will be treated as the image size.
int com.foxit.sdk.common.Image.getType | ( | ) | throws com.foxit.sdk.PDFException |
int com.foxit.sdk.common.Image.getWidth | ( | ) | throws com.foxit.sdk.PDFException |
Get image width.
If the image has multiple frames, usually the first frame's size will be treated as the image size.
int com.foxit.sdk.common.Image.getXDPI | ( | ) | throws com.foxit.sdk.PDFException |
int com.foxit.sdk.common.Image.getYDPI | ( | ) | throws com.foxit.sdk.PDFException |
boolean com.foxit.sdk.common.Image.isEmpty | ( | ) |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
boolean com.foxit.sdk.common.Image.saveAs | ( | String | file_path | ) | throws com.foxit.sdk.PDFException |
Save current image as an image file.
If the type of current image is e_TIF, e_GIF or e_None, and the saved image file type does not support multiply frames, only the first frame of current image will be saved to the image file.
For an image object (not constructed from any image file), please ensure to add at least one valid frame bitmap to the image object before using this function; otherwise this function will fail.
file_path | A full path of the saved image file. It should not be an empty string. Currently, this function supports following extension names: .bmp, .jpg, .jpeg, .png, .tif, .tiff, .jpx, .jp2. |
boolean com.foxit.sdk.common.Image.saveAs | ( | StreamCallback | file, |
String | file_extension | ||
) | throws com.foxit.sdk.PDFException |
Save current image as an image file.
If the type of current image is e_TIF, e_GIF or e_None, and the saved image file type does not support multiply frames, only the first frame of current image will be saved to the image file.
For an image object (not constructed from any image file), please ensure to add at least one valid frame bitmap to the image object before using this function; otherwise this function will fail.
file | A StreamCallback object which is implemented by user to save image file. |
file_extension | A full path of the saved image file. It should not be an empty string. Currently, this function supports following extension names: .bmp, .jpg, .jpeg, .png, .tif, .tiff, .jpx, .jp2. |
void com.foxit.sdk.common.Image.setDPIs | ( | int | x_dpi, |
int | y_dpi | ||
) | throws com.foxit.sdk.PDFException |
|
static |
|
static |
Not have image type yet.