All Projects → Vaidas737 → express-thumbnail

Vaidas737 / express-thumbnail

Licence: MIT license
Express framework middleware for creation of thumbnails on the fly

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to express-thumbnail

Gallery shell
📷 Bash Script to generate static responsive image web galleries.
Stars: ✭ 198 (+1314.29%)
Mutual labels:  thumbnails
nano photos provider2
PHP photos provider for nanogallery2
Stars: ✭ 37 (+164.29%)
Mutual labels:  thumbnails
yet-another-speed-dial
a modern speed dial for chrome, edge and firefox
Stars: ✭ 102 (+628.57%)
Mutual labels:  thumbnails
Epeg
Insanely fast JPEG/ JPG thumbnail scaling with the minimum fuss and CPU overhead. It makes use of libjpeg features of being able to load an image by only decoding the DCT coefficients needed to reconstruct an image of the size desired.
Stars: ✭ 220 (+1471.43%)
Mutual labels:  thumbnails
imtool
🖼️ Client-side canvas-based image manipulation library.
Stars: ✭ 38 (+171.43%)
Mutual labels:  thumbnails
BlenderQuickLook
A Quick Look Plugin for generating Blender3D file thumbnails.
Stars: ✭ 36 (+157.14%)
Mutual labels:  thumbnails
Cantaloupe
High-performance dynamic image server in Java
Stars: ✭ 186 (+1228.57%)
Mutual labels:  thumbnails
LPThumbnailView
A thumbnail view for iOS to give context to multiple images/videos using thumbnails and counter.
Stars: ✭ 54 (+285.71%)
Mutual labels:  thumbnails
lamba-thumbnailer
AWS S3 Video Thumbnailer with Lambda
Stars: ✭ 21 (+50%)
Mutual labels:  thumbnails
micro
A not-so-micro ShareX server with support for thumbnails, deleting uploads and users.
Stars: ✭ 25 (+78.57%)
Mutual labels:  thumbnails
Lsix
Like "ls", but for images. Shows thumbnails in terminal using sixel graphics.
Stars: ✭ 2,635 (+18721.43%)
Mutual labels:  thumbnails
MementoEmbed
A service that provides archive-aware oEmbed-compatible embeddable surrogates (social cards, thumbnails, etc.) for archived web pages (mementos).
Stars: ✭ 13 (-7.14%)
Mutual labels:  thumbnails
flask-thumbnails
A simple extension to create a thumbs for the flask framework
Stars: ✭ 59 (+321.43%)
Mutual labels:  thumbnails
Vcsi
Create video contact sheets, thumbnails
Stars: ✭ 219 (+1464.29%)
Mutual labels:  thumbnails
image-zoom
smooth, iOS/medium.com style thumbnail viewing
Stars: ✭ 35 (+150%)
Mutual labels:  thumbnails
Video Thumbnail Generator
📷 Generate thumbnail sprites from videos.
Stars: ✭ 190 (+1257.14%)
Mutual labels:  thumbnails
laravel-thumbnails
Laravel Package for making thumbnails instantly
Stars: ✭ 51 (+264.29%)
Mutual labels:  thumbnails
oembed
PHP OEmbed wrapper for well-known video platforms and services
Stars: ✭ 26 (+85.71%)
Mutual labels:  thumbnails
flutter scroll gallery
Gallery with thumbnails
Stars: ✭ 42 (+200%)
Mutual labels:  thumbnails
react-hover-video-player
A React component for rendering videos that play on hover, including support for mouse and touch events and a simple API for adding thumbnails and loading states.
Stars: ✭ 60 (+328.57%)
Mutual labels:  thumbnails

Express Thumbnail

Express thumbnail is a Express framework middleware for creation of thumbnails on the fly. It automatically creates a thumbnails by adding query parameters onto a image url.

Overview

This module use lwip, which didn't require external runtime dependencies for image processing. It means you don't have to install anything else on your system.

Install

$ npm install express-thumbnail

Examples

var express = require('express');
var expressThumbnail = require('express-thumbnail');
var app = express();
...
app.use(expressThumbnail.register(__dirname + '/images'));
<img src="foo.png?thumb=50x50">

Docs.

expressThumbnail.register(rootDir, [options])

rootDir path to images root directory.

options (optional) an object of options. Available options:

  • cacheDir The location where converted images will be stored. Default is [rootDir]/.thumb.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].