Node Thumbnail generation without limits
Please refer to the operating system-specific instructions on installing the following before using YUBIGEN.
- both
graphicsmagickandimagemagick npmandnodegmpackage fornpm. Ifnpmhas been installed, simply runnpm install gm.aws-sdkpackage fornpm, installed at the application level, but only if putting objects to AWS S3
YUBIGEN makes use of the resize and crop functions found in gm to resize and crop images according to specified parameters, respectively passed into the resizeParams and cropParams fields in the second parameter object in arrays. The third parameter is passed a callback which handles the resulting buffer in the specified manner.
YUBIGEN also has a way to predict the format of the input, as well as a function to output to a specified file and to upload to an AWS S3 Bucket. Format-specific functions have been made available as well.
Manipulates image given URL
Manipulates image from file given path
Manipulates image from a buffer given path
Predicts format (string or buffer) of the given input
Outputs to file as specified from input format prediction
With specified credentials (default if config is null), outputs to specified S3 Bucket as specified from
input format prediction (requires external install of aws-sdk package)
resizeParams: resize parameters as specified byresizein a one-dimensional arraycropParams: crop parameters as specified bycropin a one-dimensional arraytextParams: an array of text parameter objects. Text parameter object schema is as follows.format: file formatimageMagick: ImageMagick enabled if true
result: resulting buffererr: error if any
const yubigen = require('yubigen'), fs = require('fs'),
AWS = require('aws-sdk'); // for demonstration purposes
var params = {
resizeParams: [100], // resize parameters as specified by gm resize
cropParams: [50,50,20,0], // crop parameters as specified by gm crop
format: "JPEG", // file format
imageMagick: false, // ImageMagick not enabled
textParams: [ // Text parameter object #1:
{
color: "#5940de",
fontSize: "24pt",
drawParams: [0, 0, "CENSORED", "Center"] // text draw parameters as specified by gm drawText
},
{
color: "#000000",
fontSize: "12pt",
drawParams: [0, 0, "VOID", "Center"]
}
]
}, writeFile = (result, err) => { // write to file callback
fs.writeFile("bruh.png", result, (error) => {
if (error) console.log(error);
});
}, s3_upload = (result, err) => {
// callback to upload to S3 Bucket, for demonstration purposes
var args = {
Bucket: BUCKET_NAME
Key: KEY_NAME,
Body: result
}, var s3 = new AWS.S3();
s3.putObject(args, function(error) {
if (error) console.log(error);
});
};
// From URL
yubigen.fromUrl("https://ktuh.org/img/ktuh-fm-logo.png", params, writeFile);
// From file
yubigen.fromFile("bruh.png", params, s3_upload);
// From buffer
fs.readFile('alpha.jpg', function(error, data) {
yubigen.fromBuffer(data, params, (result, err) => {
fs.writeFile("gamma.png", result, (error) => {
if (error) console.log(error);
});
});
});
// Export from URL to file
yubigen.outToFile('logo.png', "https://ktuh.org/img/ktuh-fm-logo.png", params,
(result, err) => {
if (error) console.log(error);
else console.log(result);
});
// Put Object to S3 bucket `my-bucket` with default AWS credentials
fs.readFile('test/images/alpha.jpg', function(error, data) {
yubigen.s3Put(null, "my-bucket", "alpha.png", data, params,
(result, err) => {
if (error) console.log(error);
else if (result) console.log("Upload success!");
});
});- Derek Chan
- Pull requests and issues are welcome! Feature requests will be considered on a case-by-case basis.