-
Notifications
You must be signed in to change notification settings - Fork 0
Plugins
With its pluggable architecture, thumbor provides extension points for a myriad of plug-in: storages, loaders, detectors, filters.
If your plug-in is not listed here, please create an issue with the details and we'll add it here.
Thumbor is a smart imaging service. It enables on-demand crop, resizing and flipping of images.
Hbase is a column oriented database from the hadoop ecosystem.
This module provide support for Hadoop Hbase as large auto replicant key/value backend storage for images in Thumbor.
- URL: https://github.com/dhardy92/thumbor_hbase
-
Installing:
pip install thumbor_hbase
-
Usage: Just change your
STORAGE
configuration in thumbor.conf tothumbor_hbase.storage
.
Thumbor is a smart imaging service. It enables on-demand crop, resizing and flipping of images.
MongoDB is a document oriented NoSQL database.
This plugin for Thumbor is a loader that can reach images from a mongodb collection based on its Object(_id).
- URL: https://github.com/dhardy92/thumbor_mongodb
-
Installing:
pip install thumbor_mongodb
Using it is simple, just change your configuration in thumbor.conf:
LOADER = 'thumbor_mongodb.loader'
MONGO_LOADER_CNX_STRING = 'mongodb://mongodbserver01,mongodbserver02:27017'
MONGO_LOADER_SERVER_DB = 'thumbor'
MONGO_LOADER_SERVER_COLLECTION = 'images'
MONGO_LOADER_DOC_FIELD = 'content'