Fast and caching media server for processing images, generating thumbnails and serving files on the fly
!!! Early stages of development. Some features may not work properly and can change overtime without notice. !!!
picturium relies on libvips
crate to provide libvips bindings.
This means that the maximum currently supported version of libvips is 8.15.1
.
Since building libvips while keeping system packages not broken is quite a challenge, it is recommended running picturium through Docker.
There are 3 Docker images:
This image contains ready-to-deploy picturium server with everything you are going to need.
Replace {picturium-data}
with local folder containing your .env
file data
directory containing files you want to serve.
Make sure picturium
user with UID/GID 1500 has write permissions to this folder (not necessarily your data directories).
docker run --rm -v {picturium-data}:/app -ti --init -p 20045:20045 lamka02sk/picturium:latest
Image to make development of picturium itself easier. Automatically watches for code changes and recompiles picturium.
Simply run with bash script dev.sh
in project root.
./dev.sh
Base picturium image providing libvips
and other necessary libraries for the final build.
This image is used only as base for other images.
Picturium provides a Nix flake with a default package, a development shell and a NixOS module.
You can run the picturium service with the following command:
nix run github:gravio-la/picturium#picturium
For development, once checked out, you can use the following command to enter the shell with all necessary dependencies:
nix develop
For deployment, you can use the NixOS module to automatically deploy and run picturium as a service.
services.picturium = {
enable = true;
secret_key = "your-secret-key";
};
Supports all file formats in pass-through mode, but some of them get special treatment:
- JPG, JPEG, PNG, WEBP, SVG, TIF, TIFF, GIF, BMP, ICO
- HEIC, HEIF, JP2, JPM, JPX, JPF, AVIF, AVIFS [//]: # (- ARW, RAW)
- PDF (for thumbnail generation or pass-through)
- DOC, DOCX, ODT, RTF (for thumbnail generation or pass-through)
- XLS, XLSX, ODS (for thumbnail generation or pass-through)
- PPT, PPTX, ODP (for thumbnail generation or pass-through)
- MP4, MKV, WEBM, AVI, MOV, FLV, WMV, MPG, MPEG, 3GP, OGV, M4V (for thumbnail generation using
mpv
)
- PDF (supported for office document files only)
- AVIF (served by default to all browsers supporting it, can be disabled by setting
AVIF_ENABLE
environment variable tofalse
) - WEBP (served to all browsers not supporting AVIF, or when AVIF is disabled)
- JPEG (served to all browsers not supporting AVIF and WEBP)
- PNG (served only when requested by the client)
- automatically checks file creation, modification and last accessed time
- set maximum cache size on disk with environment variable
CACHE_CAPACITY
in GB - old cached files are periodically purged from disk
- picturium supports token authorization of requests to protect against bots or other unwanted traffic
- if environment variable
KEY
is not set, token authorization will be disabled, otherwise each request needs to be signed with SHA256 HMAC token - token is generated from file path + all URL parameters except
token
parameter, sorted alphabetically (check outRawUrlParameters::verify_token
in src/parameters/mod.rs for more)
-
w
(int): width of the output image in pixels -
h
(int): height of the output image in pixels -
ar
(string): aspect ratio of the output image, when bothw
andh
are set, this parameter will be ignoredauto
(default): aspect ratio will be set byw
andh
parameters, or original image dimensions if not bothw
andh
are setvideo
: ratio 16/9square
: ratio 1/1- custom aspect ratio like
4/3
,16/10
,3/2
-
q
(int): quality of the output image in percent (default: dynamic quality based on the requested image dimensions) -
dpr
(int): device pixel ratio, multipliesw
andh
by itself -
crop
(string): crop parameters in formatcrop=ar:auto,w:50,h:50,g:center,x:0,y:0
; for cropping the image, at least one ofw
orh
must be setar
: aspect ratio of the crop areaauto
(default): aspect ratio will be set byw
andh
crop parameters, or original image dimensions if not bothw
andh
are setvideo
: ratio 16/9square
: ratio 1/1- custom aspect ratio like
4/3
,16/10
,3/2
w
: width of the crop area in pixels relative to the original image sizeh
: height of the crop area in pixels relative to the original image sizeg
: gravity / placement of the cropped area within the original image, default:center
center
: center of the original imagetop-left
|left-top
: left top corner of the original imagetop-center
|center-top
|top
: top center of the original imagetop-right
|right-top
: right top corner of the original imageleft-center
|center-left
|left
: left center of the original imageright-center
|center-right
|right
: right center of the original imagebottom-left
|left-bottom
: left bottom corner of the original imagebottom-center
|center-bottom
|bottom
: bottom center of the original imagebottom-right
|right-bottom
: right bottom corner of the original image
x
: offset on the X axis (horizontal) in pixels from the center of gravity, negative values are supportedy
: offset on the Y axis (vertical) in pixels from the center of gravity, negative values are supported
-
thumb
: generate thumbnail from file, or specific page of PDF documents in formatthumb=p:1
p
: page of the document to generate thumbnail, default:1
-
original
: defaultfalse
true
: returns original image or file, all other URL parameters are ignoredfalse
: returns processed image
-
rot
: rotate image, default:no
90
|left
|anticlockwise
: rotate image left by 90 degrees180
|bottom-up
|upside-down
: rotate image upside down by 180 degrees270
|right
|clockwise
: rotate image right by 90 degrees
-
bg
: apply background color to transparent image, colors can be specified in different formats:- HEX (e.g.
#ffffff
,#7a7ad3
,#000000ff
) - RGB (e.g.
255,124,64
) - RGBA (e.g.
255,124,64,255
) - predefined value (
transparent
|black
|white
)
- HEX (e.g.
-
f
: specify output format, default:auto
auto
: automatically selects the best format for the requesting web browserjpg
|jpeg
: output image in JPEG formatwebp
: output image in WEBP formatavif
: output image in AVIF formatpng
: output image in PNG formatpdf
: output office document in PDF format / defaults to JPEG for images and PDF files
The original image will be processed, rotated left by 90 degrees, resized to be 320px wide while keeping the original aspect ratio, saved with 50% quality in a format (WEBP or JPEG) supported by the requesting web browser.
https://example.com/folder/test.jpg?token=fsd5f4sd5f4&w=160&q=50&dpr=2&rot=left