pictkura
Download

pictkura  /  Download

Download

Every Windows and macOS build, listed here. Pick one and the download starts immediately — no need to go and read a releases page. Free, no account, nothing to pay.

Version  v0.2.5 Released  2026-08-30 License  MIT

Photo: Wikimedia Commons, CC0

Windows 10 / 11 (x64)

Recommended for Windows

No administrator rights are needed. It is installed for the current user only, and asks whether you want English or Japanese. About the first-launch warning →

Download

pictkura_0.2.5_x64-setup.exe
7.6 MB

01

All the files

Windows installer Recommended

No administrator rights are needed. It is installed for the current user only (%LOCALAPPDATA%\pictkura), and lets you pick English or Japanese at the start.

pictkura_0.2.5_x64-setup.exe

Download 7.6 MB

Portable ZIP for Windows

Nothing is installed. Unzip it and run pictkura.exe — from a USB stick if you like.

pictkura_0.2.5_x64-portable.zip

Download 10.1 MB

Windows, machine-wide (English)

To install it for all users of the machine. Asks for administrator rights. If the machine is yours alone, the installer above is enough.

pictkura_0.2.5_x64_en-US.msi

Download 10.0 MB

Windows, machine-wide (Japanese)

The same build with a Japanese interface. The MSI comes as one file per language.

pictkura_0.2.5_x64_ja-JP.msi

Download 10.0 MB

macOS (Apple Silicon)

macOS 11 or newer. Unzip, move pictkura.app where you want it, then open it. The first launch requires an additional step (section 3).

pictkura_0.2.5_arm64.zip

Download 9.4 MB

Older versions and release notes on GitHub →

02

Opening it the first time

Windows and macOS both warn you the first time, as the application is not digitally signed. The warning means the publisher could not be verified — it is not the result of anything inspecting the contents. Every prompt, screen by screen, is written out in the installation guide, and the material you can check for yourself is under how these files are built. If you read it and are still uneasy, do not go ahead.

On Windows it is "Windows protected your PC" → "More info" → "Run anyway". On macOS it refuses once, and you then allow it under System Settings → Privacy & Security → "Open Anyway".

No Intel build
Windows is 64-bit (x64) only, and the Mac build is Apple Silicon only
No Linux build
Importing relies on Windows and macOS features that have no Linux counterpart here
WebView2 is required
Already present on Windows 11 and up-to-date Windows 10; where it is missing, the installer downloads it
Photo files are never modified
Installing or removing pictkura never rewrites a photo file. Where they are kept is in the specification
03

How these files are built

There is no signing certificate, so us telling you it is safe gives you nothing you can check. Here is what you can check instead. The point is not to claim it is safe — it is to leave you able to find out.

The source is all there
Every build is made from the source at its tag. The repository is MIT licensed
No local machine makes them
The five files come out of a GitHub Actions workflow, and every run of it is on the record
The digest is GitHub's, not ours
The SHA-256 the command below returns is computed by GitHub from the bytes it stores. It is not a number we typed in
It tells you one thing
Whether the file you hold is byte for byte what is published here. It is not evidence that the contents are safe

Ask GitHub for the digests it holds. Name the tag you actually downloaded — a copy from somewhere else is not necessarily the newest release, and comparing it against latest would differ for that reason alone:

# v0.2.4 is an example — use the tag of the version you have (it is in the filename)

# macOS
curl -s https://api.github.com/repos/Harusame64/pictkura/releases/tags/v0.2.4 | grep -E '"name"|"digest"'

# Windows (PowerShell)
(Invoke-RestMethod https://api.github.com/repos/Harusame64/pictkura/releases/tags/v0.2.4).assets | Select-Object name, digest

Then hash the file you downloaded and compare:

# macOS
cd ~/Downloads
shasum -a 256 pictkura_*_arm64.zip

# Windows (PowerShell)
cd ~\Downloads
Get-FileHash .\pictkura_*_x64-setup.exe -Algorithm SHA256

Get-FileHash prints the digest in upper case. Drop GitHub's sha256: prefix and compare ignoring case. If nothing at all is printed on Windows, the file is not in that folderGet-FileHash exits silently, without an error, when the pattern matches nothing (measured on PowerShell 7.6.5).

This comparison earns its keep when the file came from somewhere other than here — a mirror such as Softpedia. If the digest differs, you are holding a file the author has never seen.