Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
e12bd2c
Customize alignment, custom format features, and translation of comme…
Jun 17, 2026
8dea2af
Update README.md
hiro-shikata Jun 17, 2026
c65f520
Create .gitkeep
hiro-shikata Jun 17, 2026
f10f071
Add files via upload
hiro-shikata Jun 17, 2026
a39a6a7
Update README.md
hiro-shikata Jun 17, 2026
de1334e
Update README.md
hiro-shikata Jun 17, 2026
943aefa
Update README.md
hiro-shikata Jun 17, 2026
6cb607c
Update README.md
hiro-shikata Jun 17, 2026
051b7d6
Add files via upload
hiro-shikata Jun 17, 2026
0c76d5a
Add files via upload
hiro-shikata Jun 17, 2026
8409104
Update README.md
hiro-shikata Jun 17, 2026
72bdf50
Update README.md
hiro-shikata Jun 18, 2026
fc14f98
Release version 2.1.1
Jun 18, 2026
01830a8
Merge branch 'master' of https://github.com/hiro-shikata/Time_Stamper
Jun 18, 2026
b7351be
Delete media/UI.jpg
hiro-shikata Jun 18, 2026
40963ba
Add files via upload
hiro-shikata Jun 18, 2026
04b7f57
Delete media/UI.jpg
hiro-shikata Jun 18, 2026
ed41d5a
Add files via upload
hiro-shikata Jun 18, 2026
aaa996e
Update README.md
hiro-shikata Jun 18, 2026
082cc8f
Update README.md
hiro-shikata Jun 18, 2026
8843e7d
Delete media/UI.jpg
hiro-shikata Jun 18, 2026
7306307
Add files via upload
hiro-shikata Jun 18, 2026
f5fc0de
Delete Time_Stamper-2.1.1-custom.jar
hiro-shikata Jun 18, 2026
afd2b4c
Add files via upload
hiro-shikata Jun 18, 2026
81b118b
Update README.md
hiro-shikata Jun 18, 2026
60f3619
Delete media/UI2.jpg
hiro-shikata Jun 18, 2026
ce3b4da
Add files via upload
hiro-shikata Jun 18, 2026
819539d
Delete media/UI3.jpg
hiro-shikata Jun 18, 2026
f2d04f2
Add files via upload
hiro-shikata Jun 18, 2026
3fb84a4
Update README.md
hiro-shikata Jun 18, 2026
cf31cfe
Delete Time_Stamper-2.1.1.jar
hiro-shikata Jun 18, 2026
f3a52bc
Add files via upload
hiro-shikata Jun 18, 2026
ede77e2
Update README.md
hiro-shikata Jun 18, 2026
3453ac1
Update README.md
hiro-shikata Jun 19, 2026
abc96b6
Update README.md
hiro-shikata Jun 19, 2026
556686c
Add 'Create New Window' option to output timestamp on duplicated image
Jun 19, 2026
4e99b74
Merge branch 'master' of https://github.com/hiro-shikata/Time_Stamper
Jun 19, 2026
d957fce
Delete .github/workflows/Time_Stamper-2.1.1-custom.jar
hiro-shikata Jun 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,28 @@
[![](https://github.com/fiji/Time_Stamper/actions/workflows/build-main.yml/badge.svg)](https://github.com/fiji/Time_Stamper/actions/workflows/build-main.yml)
# A customized version of the Time_Stamper (v2.1.1) plugin for ImageJ/Fiji
This plugin allows you to add timestamps to your image stacks.  

## New Features
- **Interactive Positioning**: Users can specify where the timestamp is placed by simply clicking on the image.
- **UI customization**: Font settings (family, style, size) and colors can be customized directly from the dialog.
- **Custom Time Formatting**: You can define a custom time format using placeholders:
- Example: `36min20sec` using `${mm}min${ss}sec`
- Example: `1d14hr36min20sec` using `${d}d${hh}hr${mm}min${ss}sec`
- Example: `1:14:36:20` using `${d}:${hh}:${mm}:${ss}`
* *Note: Selecting the correct `Time Unit` (Seconds, Minutes, Hours) is required to parse the data precisely.*
* *Priority of time formats: `Custom Format` > `'00:00' format` > `Suffix` If a custom format pattern is specified, it takes the highest priority, overriding the `'00:00' format` checkbox and any defined `Suffix`.*
- **Non-destructive Processing**: (Recommended) Checking the `Create New Window` box will generate timestamps on a duplicate window, leaving the original stack unmodified.

## Requirements
ImageJ 1.54g or later (Fiji is recommended).

## License
GPLv3+ according to the [original](https://imagej.net/plugins/time-stamper) version.

## Installation
Place the `Time_Stamper-2.1.1.jar` file in the `plugins` folder of Fiji or ImageJ (replacing the original version if it exists). Alternatively, you can compile the source code yourself.

## Release Note
2026.06.18 beta released.
2026.06.19 v2.1.1 released: added the function "Create New Window" when timestamps are generated, which keeps the original images.

<img src="https://github.com/hiro-shikata/Time_Stamper/blob/master/media/UI4.jpg?raw=true" width="600px">
Binary file added Time_Stamper-2.1.1.jar
Binary file not shown.
1 change: 1 addition & 0 deletions media/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Binary file added media/UI4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>sc.fiji</groupId>
<artifactId>Time_Stamper</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.1.1</version>

<name>Time Stamper</name>
<description>Time Stamper plugin for Fiji.</description>
Expand Down Expand Up @@ -129,6 +129,7 @@
<dependency>
<groupId>net.imagej</groupId>
<artifactId>ij</artifactId>
<version>1.54g</version>
</dependency>
</dependencies>
</project>
Loading