imagemagick-async
Version:
An API for Image Magick commands.
152 lines (131 loc) • 3 kB
JavaScript
let Path = require('path');
let PathParts = __dirname.split(Path.sep);
let index = PathParts.indexOf('imagemagick-async');
let RootDir = PathParts.slice(0, index + 1).join(Path.sep);
let Err = require(Path.join(RootDir, 'error.js'));
let Filepath = require(Path.join(RootDir, 'filepath.js')).Filepath;
let CanvasBaseClass = require(Path.join(Filepath.CanvasDir(), 'canvasbaseclass.js')).CanvasBaseClass;
//-----------------------------------
class ImageCanvas extends CanvasBaseClass {
constructor(builder) {
super(builder);
this.order = ['src'];
}
/**
* @override
*/
static get Builder() {
class Builder {
constructor() {
this.name = 'ImageCanvas';
this.args = {};
this.primitives = [];
}
/**
* @param {number} n Width in pixels.
*/
width(n) {
this.args.width = n;
return this;
}
/**
* @param {number} n Height in pixels.
*/
height(n) {
this.args.height = n;
return this;
}
/**
* @param {string} str The source path.
*/
source(str) {
this.args.source = str;
return this;
}
build() {
return new ImageCanvas(this);
}
}
return new Builder();
}
/**
* @override
**/
Args() {
return [this.args.source];
}
/**
* @override
*/
Errors() {
let params = ImageCanvas.Parameters();
let errors = [];
let prefix = 'IMAGE_CANVAS_ERROR';
let widthErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Width')
.condition(
new Err.NumberCondition.Builder(this.args.width)
.isInteger(true)
.min(params.width.min)
.build()
)
.build()
.String();
if (widthErr)
errors.push(widthErr);
let heightErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Height')
.condition(
new Err.NumberCondition.Builder(this.args.height)
.isInteger(true)
.min(params.height.min)
.build()
)
.build()
.String();
if (heightErr)
errors.push(heightErr);
let sourceErr = Err.ErrorMessage.Builder
.prefix(prefix)
.varName('Source')
.condition(
new Err.StringCondition.Builder(this.args.source)
.isEmpty(false)
.isWhitespace(false)
.build()
)
.build()
.String();
if (sourceErr)
errors.push(sourceErr);
return errors;
}
/**
* @override
*/
static Parameters() {
return {
width: {
type: 'number',
subtype: 'integer',
min: 1,
required: true
},
height: {
type: 'number',
subtype: 'integer',
min: 1,
required: true
},
source: {
type: 'string',
required: true
}
};
}
}
//-----------------------------
// EXPORTS
exports.ImageCanvas = ImageCanvas;