- Add videodb PHP/MySQL media collection manager (Blu-ray, DVD, CD) - Dockerfile: PHP 8.1 + Apache with GD/mysqli/exif extensions - docker-compose.yml: app on port 6761 + MySQL 8.0 with health checks - docker-entrypoint.sh: auto-generates config.inc.php from env vars, waits for MySQL, initializes DB schema idempotently - init-db.php: CLI schema installer using app's own prefix_query() logic - Persistent volumes for DB, cache, and cover images Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
836 B
Markdown
13 lines
836 B
Markdown
phpThumb
|
|
========
|
|
|
|
phpThumb() - The PHP thumbnail generator
|
|
|
|
phpThumb() uses the GD library and/or ImageMagick to create thumbnails from images (GIF, PNG or JPEG) on the fly.
|
|
The output size is configurable (can be larger or smaller than the source), and the source may be the entire
|
|
image or only a portion of the original image. True color and resampling is used if GD v2.0+ is available,
|
|
otherwise low-color and simple resizing is used. Source image can be a physical file on the server or can be
|
|
retrieved from a database. GIFs are supported on all versions of GD even if GD does not have native GIF support
|
|
thanks to the GIFutil class by Fabien Ezber. AntiHotlinking feature prevents other people from using your server
|
|
to resize their thumbnails, or link to your images from another server. The cache feature reduces server load.
|