App
PDBitmap.java
Go to the documentation of this file.
1 package mhr.appcore.interfaces;
2 
3 import mhr.appcore.bitmap.BitmapInfo;
4 import mhr.appcore.bitmap.exceptions.UnsupportedBitmapException;
5 
9 public interface PDBitmap {
10 
15  public long getAndLockData();
16 
21  public int unlockData();
22 
27  public BitmapInfo getInfo();
28 
33  public PDBitmap makeCopy();
34 
36 
37  public void dispose();
38 
39 }