Giter Site home page Giter Site logo

amupdf's Introduction

This is a pdf reader base on mupdf.

how to use it. git clone https://github.com/archko/AMupdf.git. cd to AMupdf dir:

git clone https://github.com/archko/viewer.git

import AMupdf into android studio.

only support ndk.abiFilters 'armeabi-v7a', 'arm64-v8a',you can modify reader/build.gradle from 4.5.0 remove native cropper,don't need ndk to compile it add keystore.properties to Amupdf,key content is :

keyAlias=xx_key
storeFile=../xx.jks
keyPassword=your pass
storePassword=your pass 

the viewer has been modified for textreflow with image. the git patch is archko.patch

AMupdf 4.6.2 dependence on https://github.com/archko/viewer.git mupdf_1.18 branch

features:

  • textreflow
  • auto crop white column
  • multitouch
  • zoom
  • file browser
  • history and favorite

how to use the reader module:

create a class AMuPDFRecyclerViewActivity : MuPDFRecyclerViewActivity()

regist activity:

<activity
    android:name="xx.AMuPDFRecyclerViewActivity"
    android:configChanges="orientation|keyboardHidden|screenSize"
    android:screenOrientation="sensor">
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data android:mimeType="application/pdf" />
        <data android:mimeType="application/vnd.ms-xpsdocument" />
        <data android:mimeType="application/oxps" />
        <data android:mimeType="application/x-cbz" />
        <data android:mimeType="application/epub+zip" />
        <data android:mimeType="text/xml" />
    </intent-filter>
    <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data android:pathPattern=".*\\.pdf" />
        <data android:pathPattern=".*\\.xps" />
        <data android:pathPattern=".*\\.oxps" />
        <data android:pathPattern=".*\\.cbz" />
        <data android:pathPattern=".*\\.epub" />
        <data android:pathPattern=".*\\.fb2" />
    </intent-filter>
</activity>

open AMuPDFRecyclerViewActivity with a intent():

val intent = Intent()
intent.setDataAndType(Uri.fromFile(f), "application/pdf")
intent.setClass(activity!!, AMuPDFRecyclerViewActivity::class.java)
intent.action = "android.intent.action.VIEW"
activity?.startActivity(intent)

released apks:

amupdf's People

Contributors

archko avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.