Blog Post

How to Build an Android Image Viewer with PSPDFKit Library

Illustration: How to Build an Android Image Viewer with PSPDFKit Library

In this post, you’ll learn how to build an Android image viewer with PSDFKit for Android. Adding an image viewer to your Android application will give your users the convenience of being able to open and view images (and potentially annotate and edit them) directly in your app.

What Is an Android Image Viewer?

An Android image viewer allows you to render and display images inside your app without your users needing to use an external application like an image reader.

PSPDFKit’s Android Image Viewer Library

We offer a commercial Android image viewer library that lets your developers quickly integrate a highly configurable image viewer with a beautiful UI and cut development time. It lets you directly render image documents on any Android device without the need for plugins.

Its key capabilities include:

  • Customizable UI — Hide or add buttons, and match your look and feel.

  • Responsive — A mobile-friendly UI auto-adjusts to all screen sizes.

  • PNG, JPG, and TIFF — Open images and PDFs.

  • Accessible — Built-in assistive technology-friendly features.

  • 30+ features — Easily add out-of-the-box features like annotations, forms, and editing.

  • Dedicated support — Deploy faster by working 1-on-1 with our developers.

Example of PSPDFKit’s Android Image Viewer Library in Action

To see how our Android image viewer works, upload a JPG, PNG, or TIFF file by selecting Choose Example > Open Document (if you don’t see this option, ensure Standalone is selected). Once your image is displayed in the viewer, you can try drawing freehand, adding a note, or applying a crop or an e-signature.

Requirements to Get Started

To get started you’ll need:

  • Android Studio — The official integrated development environment for Android

Creating a New Project

  1. To create a new project for your application, open Android Studio and select New Project. Or, if another project is open, choose File > New > New Project…

New Project Android image viewer library

  1. Choose the correct template for your project. In this example, you’ll use Empty Activity.

Menu in Android studio that lets user choose an activity

  1. When prompted, choose your app name (PSPDFKit Demo) and set the Save location and Language to your choice. The go-to language will almost always be Kotlin. Set the Minimum SDK to API 21.

Android image viewer library wizard for project setup

  1. Click Finish to let Android Studio create your project at your preferred save location.

Adding PSPDFKit’s Android Image Viewer Library to Your Project

  1. Add the PSPDFKit Maven repository in settings.gradle, which is located at the root of your project:

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven {
        url 'https://my.pspdfkit.com/maven/'
        }
    }
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven {
            url = uri("https://my.pspdfkit.com/maven")
        }
    }
}
  1. Add the PSPDFKit dependency in app/build.gradle:

dependencies {
    implementation 'com.pspdfkit:pspdfkit:8.2.1'
}
dependencies {
    implementation("com.pspdfkit:pspdfkit:8.2.1")
}

Configuring Your Build

PSPDFKit is supported on Android devices running API level 21 and newer and targeting the latest stable Android version 12 (API 31). Furthermore, PSPDFKit requires apps to enable Java 8 language features to build:

android {
    compileSdk 31
    buildToolsVersion '30.0.3'

    defaultConfig {
        applicationId 'com.example.app'
        minSdk 21
        targetSdk 31
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
android {
    compileSdk = 31
    buildToolsVersion = "30.0.3"

    defaultConfig {
        applicationId = "com.example.app"
        minSdk = 21
        targetSdk = 31
    }

    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }
}

Now that your project is set, you can render and display the image document.

Opening an Image Document from Shared Storage

This section shows how to display an image document from a device’s shared storage. To learn more about Android’s local storage and working with app-specific storage, refer to our blog on how to build an Android PDF viewer.

Google recommends accessing shared storage through the Storage Access Framework (SAF). According to the documentation, “the SAF makes it simple for users to browse and open documents, images, and other files across all of their preferred document storage providers. A standard, easy-to-use UI lets users browse files and access recents in a consistent way across apps and providers.”

To open an image document, invoke the ACTION_OPEN_DOCUMENT intent as follows:

// Request code for selecting an image document.
const val PICK_IMAGE_FILE = 1001

fun openFile(pickerInitialUri: Uri) {
    val intent = Intent(Intent.ACTION_OPEN_DOCUMENT).apply {
        addCategory(Intent.CATEGORY_OPENABLE)
        type = "image/*"

        // Optionally, specify a URI for the file that should appear in the
        // system file picker when it loads.
        putExtra(DocumentsContract.EXTRA_INITIAL_URI, pickerInitialUri)
    }

    startActivityForResult(intent, PICK_IMAGE_FILE)
}

override fun onActivityResult(
        requestCode: Int, resultCode: Int, resultData: Intent?) {
    if (requestCode == PICK_IMAGE_FILE
            && resultCode == Activity.RESULT_OK) {
        // The result data contains a URI for the document or directory
        // the user selected.
        resultData?.data?.also { uri ->
            val documentUri = Uri.parse(uri)
            val imageDocumentConfiguration = ImageDocumentLoader.getDefaultImageDocumentActivityConfiguration(context)
            PdfActivity.showImage(this, documentUri, imageDocumentConfiguration)
        }
    }
}
// Request code for selecting an image document.
private static final int PICK_IMAGE_FILE = 1001;

private void openFile(Uri pickerInitialUri) {
    Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    intent.setType("image/*");

    // Optionally, specify a URI for the file that should appear in the
    // system file picker when it loads.
    intent.putExtra(DocumentsContract.EXTRA_INITIAL_URI, pickerInitialUri);

    startActivityForResult(intent, PICK_IMAGE_FILE);
}

@Override
public void onActivityResult(int requestCode, int resultCode,
        Intent resultData) {
    if (requestCode == PICK_IMAGE_FILE
            && resultCode == Activity.RESULT_OK) {
        // The result data contains a URI for the document or directory that
        // the user selected.
        Uri uri = null;
        if (resultData != null) {
            uri = resultData.getData();
            final Uri documentUri = Uri.parse(uri);
            final PdfActivityConfiguration imageDocumentConfiguration =
            ImageDocumentLoader.getDefaultImageDocumentActivityConfiguration(context);
            PdfActivity.showImage(this, documentUri, imageDocumentConfiguration);
        }
    }
}

Here’s what the code above does in practice:

  1. ACTION_OPEN_DOCUMENT instructs the Android operating system (OS) to open a document on your behalf.

  2. Not all documents can be opened, as the user might not have the privilege or permission to access a few files. So CATEGORY_OPENABLE filters these files.

  3. Set the MIME type to image to tell the OS what type of files you’re interested in. The /* after the image tells the system that you’re interested in all types of images.

  4. When the user is done picking their image, onActivityResult is called. If the request code matches the value in PICK_IMAGE_FILE, you parse the URI.

  5. Finally, a PdfActivityConfiguration is defined (in this scenario, it’s the default configuration) and the PdfActivity presents the image document.

Conclusion

In this post, we demonstrated how to integrate PSPDFKit’s Android image viewer library into an Android application, and we presented an image document from shared storage. If you hit any snags while trying to implement any of the steps, don’t hesitate to reach out to our support team for help.

At PSPDFKit, we offer a commercial, feature-rich, and completely customizable Android PDF library that’s easy to integrate and comes with well-documented APIs to handle advanced use cases. Try it for free, or visit our demo to see it in action.

Related Products
Share Post
Free 60-Day Trial Try PSPDFKit in your app today.
Free Trial

Related Articles

Explore more
PRODUCTS  |  Android • Releases

Android 2024.1 Update: Advanced Content Editing and Digital Signatures, Plus Expanded Jetpack Compose Support

TUTORIALS  |  Android • How To

How to Persist Zoom While Scrolling through a Document Using the PSPDFKit Android Library

CUSTOMER STORIES  |  Case Study • React Native • iOS • Android

Case Study: How Trinoor Uses PSPDFKit to Drive Operational Excellence with Flexible, Mobile Applications for the Energy and Utilities Market