@capgo/capacitor-photo-library

January 31, 2026 · View on GitHub

Capgo - Instant updates for capacitor

➡️ Get Instant updates for your App with Capgo

Missing a feature? We’ll build the plugin for you 💪

Displays photo gallery as web page, or boring native screen which you cannot modify but require no authorization

Documentation

The most complete doc is available here: https://capgo.app/docs/plugins/photo-library/

Compatibility

Plugin versionCapacitor compatibilityMaintained
v8.*.*v8.*.*
v7.*.*v7.*.*On demand
v6.*.*v6.*.*
v5.*.*v5.*.*

Note: The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.

Install

npm install @capgo/capacitor-photo-library
npx cap sync

Usage

import { Capacitor } from '@capacitor/core';
import { PhotoLibrary } from '@capgo/capacitor-photo-library';

const { state } = await PhotoLibrary.requestAuthorization();
if (state === 'authorized' || state === 'limited') {
  const { assets, hasMore } = await PhotoLibrary.getLibrary({
    limit: 100,
    thumbnailWidth: 256,
    thumbnailHeight: 256,
  });

  const gallery = assets.map(asset => ({
    id: asset.id,
    fileName: asset.fileName,
    thumbnailUrl: asset.thumbnail
      ? asset.thumbnail.webPath ?? Capacitor.convertFileSrc(asset.thumbnail.path)
      : undefined,
    photoUrl: asset.file
      ? asset.file.webPath ?? Capacitor.convertFileSrc(asset.file.path)
      : undefined,
  }));

  console.log('Loaded', gallery.length, 'items. More available?', hasMore);
}

const picked = await PhotoLibrary.pickMedia({
  selectionLimit: 3,
  includeVideos: true,
});

console.log('User selected', picked.assets.length, 'items');

The native implementations cache exported files inside the application cache directory. You can safely delete the photoLibrary folder under the cache if you need to free up space.

API

checkAuthorization()

checkAuthorization() => Promise<{ state: PhotoLibraryAuthorizationState; }>

Returns the current authorization status without prompting the user.

Returns: Promise<{ state: PhotoLibraryAuthorizationState; }>


requestAuthorization()

requestAuthorization() => Promise<{ state: PhotoLibraryAuthorizationState; }>

Requests access to the photo library if needed.

Returns: Promise<{ state: PhotoLibraryAuthorizationState; }>


getAlbums()

getAlbums() => Promise<{ albums: PhotoLibraryAlbum[]; }>

Retrieves the available albums.

Returns: Promise<{ albums: PhotoLibraryAlbum[]; }>


getLibrary(...)

getLibrary(options?: GetLibraryOptions | undefined) => Promise<GetLibraryResult>

Retrieves library assets along with URLs that can be displayed in the web view.

ParamType
optionsGetLibraryOptions

Returns: Promise<GetLibraryResult>


getPhotoUrl(...)

getPhotoUrl(options: { id: string; }) => Promise<PhotoLibraryFile>

Retrieves a displayable URL for the full resolution version of the asset. If you already called getLibrary with includeFullResolutionData, you normally do not need this method.

ParamType
options{ id: string; }

Returns: Promise<PhotoLibraryFile>


getThumbnailUrl(...)

getThumbnailUrl(options: { id: string; width?: number; height?: number; quality?: number; }) => Promise<PhotoLibraryFile>

Retrieves a displayable URL for a resized thumbnail of the asset.

ParamType
options{ id: string; width?: number; height?: number; quality?: number; }

Returns: Promise<PhotoLibraryFile>


pickMedia(...)

pickMedia(options?: PickMediaOptions | undefined) => Promise<PickMediaResult>

Opens the native system picker so the user can select media without granting full photo library access. The selected files are copied into the application cache and returned with portable URLs.

ParamType
optionsPickMediaOptions

Returns: Promise<PickMediaResult>


getPluginVersion()

getPluginVersion() => Promise<{ version: string; }>

Get the native Capacitor plugin version

Returns: Promise<{ version: string; }>


Interfaces

PhotoLibraryAlbum

PropType
idstring
titlestring
assetCountnumber

GetLibraryResult

PropTypeDescription
assetsPhotoLibraryAsset[]
totalCountnumberTotal number of assets matching the query in the library. assets.length can be less than this value when pagination is used.
hasMorebooleanWhether more assets are available when using pagination.

PhotoLibraryAsset

PropTypeDescription
idstring
fileNamestring
typePhotoAssetType
widthnumber
heightnumber
durationnumber
creationDatestring
modificationDatestring
latitudenumber
longitudenumber
mimeTypestring
sizenumberSize in bytes reported by the OS for the underlying asset, if available.
albumIdsstring[]
thumbnailPhotoLibraryFile
filePhotoLibraryFile

PhotoLibraryFile

PropTypeDescription
pathstringAbsolute path on the native file system.
webPathstringURL that can be used inside a web view. Usually produced by Capacitor.convertFileSrc(path).
mimeTypestring
sizenumberSize in bytes if known, otherwise -1.

GetLibraryOptions

PropTypeDescription
offsetnumberNumber of assets to skip from the beginning of the query.
limitnumberMaximum number of assets to return. Omit to return everything that matches.
includeImagesbooleanInclude images in the result. Defaults to true.
includeVideosbooleanInclude videos in the result. Defaults to false.
includeAlbumDatabooleanInclude information about the albums each asset belongs to. Defaults to false.
includeCloudDatabooleanInclude assets stored in the cloud (iCloud / Google Photos). Defaults to true.
useOriginalFileNamesbooleanIf true, use the original filenames reported by the OS when available.
thumbnailWidthnumberWidth of the generated thumbnails. Defaults to 512.
thumbnailHeightnumberHeight of the generated thumbnails. Defaults to 384.
thumbnailQualitynumberJPEG quality for generated thumbnails (0-1). Defaults to 0.5.
includeFullResolutionDatabooleanWhen true, copies the full sized asset into the app cache and returns its URL. Defaults to false.

PickMediaResult

PropType
assetsPhotoLibraryAsset[]

PickMediaOptions

PropTypeDescription
selectionLimitnumberMaximum number of items the user can select. Use 0 to allow unlimited selection. Defaults to 1.
includeImagesbooleanAllow the user to select images. Defaults to true.
includeVideosbooleanAllow the user to select videos. Defaults to false.
thumbnailWidthnumberWidth of the generated thumbnails for picked items. Defaults to 256.
thumbnailHeightnumberHeight of the generated thumbnails for picked items. Defaults to 256.
thumbnailQualitynumberJPEG quality for generated thumbnails (0-1). Defaults to 0.7.

Type Aliases

PhotoLibraryAuthorizationState

'authorized' | 'limited' | 'denied' | 'notDetermined'

PhotoAssetType

'image' | 'video'