Back to project page PDF2ImageForEP.
The source code is released under:
GNU General Public License
If you think the Android project PDF2ImageForEP listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.artifex.mupdf; //ww w . j av a 2 s . c o m import android.graphics.RectF; public class LinkInfo extends RectF { public int pageNumber; public LinkInfo(float l, float t, float r, float b, int p) { super(l, t, r, b); pageNumber = p; } }