ISS TDFlim Reader
A simple reader for .iss-tdfilm files
π¬ A napari plugin to read and write ISS TD-FLIM acquisition files (
.iss-tdflim).
β¨ Features
π Reader
Opens .iss-tdflim files directly in napari.
Each file is a ZIP archive produced by the ISS ALBA FLIM system and contains:
dataProps/Core.xmlβ acquisition metadata (pixel size, TAC range, channel IDs, β¦)data/PrimaryDecayData.binβ raw photon-count decay histograms
Two image layers are added per channel:
| Layer | Shape | Description |
|---|---|---|
<stem>_intensity_Ch<id> |
(H, W) |
Total photon counts (sum along TAC axis) |
<stem>_flim_Ch<id> |
(T, H, W) |
Full FLIM decay cube β use the time slider to scrub through TAC bins |
Spatial calibration (Β΅m/pixel) and TAC time axis (ns/bin) are embedded as napari scale and axis_labels so physical units are always correct.
πΎ Writer
Saves any napari Image layer (including those loaded by the reader) to ImageJ-hyperstack TIFF files.
- β
Supports both intensity
(H, W)and FLIM decay(T, H, W)layers - ποΈ Lossless zlib compression (requires
imagecodecs) - π Spatial calibration (
XResolution/YResolutiontags +unit) preserved for Fiji/ImageJ - β±οΈ Time-axis interval (
finterval) embedded for FLIM cubes - π·οΈ Full acquisition metadata (channel IDs, ADC resolution, TAC range, β¦) stored as JSON in the TIFF
Infofield β visible in Fiji via Image βΊ Infoβ¦ and recoverable in Python via:import json, tifffile with tifffile.TiffFile('my_file.tif') as tf: meta = json.loads(tf.imagej_metadata['Info'])
- π Non-ImageJ-compatible integer dtypes (e.g.
uint32,uint64) are automatically cast tofloat32
π Installation
Install from PyPI:
pip install napari-iss-tdflim-reader
To install with napari and all optional dependencies (including Qt backend and compression support):
pip install "napari-iss-tdflim-reader[all]"
Install the latest development version directly from GitHub:
pip install git+https://github.com/DBP008/napari-iss-tdflim-reader.git
π οΈ Usage
Reading
Drag and drop an .iss-tdflim file onto the napari window, or open it via File βΊ Open File(s)β¦.
The plugin is selected automatically based on the file extension.
Writing
Select one or more Image layers in the napari layer list, then use File βΊ Save Selected Layer(s)β¦ and choose a .tif / .tiff destination.
When saving multiple layers, each is written to a separate file with a _0, _1, β¦ suffix.
π€ Contributing
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
π License
Distributed under the terms of the Apache Software License 2.0 license.
napari-iss-tdflim-reader is free and open source software.
π Issues
If you encounter any problems, please file an issue along with a detailed description.
Version:
- 0.2.0
Last updated:
- 2026-04-27
First released:
- 2026-04-26
License:
- Apache
Supported data:
- Information not submitted
Open extension:

