image sprite generator
Processed image objects, increase information field imageInfo
imageFrames- Image arrayimageUrlrequired, local file absolute path e.g: /User/home/a.png
// input
[{
imageUrl: '/Users/home/a.png'
}]
// output
[{
imageUrl: '/Users/home/a.png',
imageInfo: {
image: Stream,
width: Number,
height: Number,
}
}]Like the process, but imageUrl is a http link address
Image sprite generator
-
iamgeFrames- Image array -
optionsmargin- default: 5 Icon margin
-
@return
{
stream: Sprite image Stream,
dataSource: icon coordinate information
}var data = [{
imageUrl: 'http://img.alicdn.com/tps/i2/TB1fvaMLVXXXXbuXFXXEDhGGXXX-32-32.png',
filename: 'acd',
w: 32,
h: 32
}, {
imageUrl: 'http://img.alicdn.com/tps/i1/TB18_qELVXXXXaKXVXXEDhGGXXX-32-32.png',
filename: 'ac12312',
w: 32,
h: 32
}, {
imageUrl: 'http://img.alicdn.com/tps/i2/TB1sEiZLVXXXXXxXFXXEDhGGXXX-32-32.png',
filename: 'ac12312',
w: 32,
h: 32
}]
imgSpriter.processHTTP(data)
.then(function(data) {
imgSpriter.sprite(data)
.then(function(data) {
var spriteOutput = path.join(__dirname, './sprite.png');
fs.writeFileSync(
'./test/index-output.json',
JSON.stringify(data.dataSource, null, 2)
);
data.stream.pack()
.pipe(fs.createWriteStream(spriteOutput))
.on('finish', function() {
console.log('output image:', spriteOutput);
});
}).catch(function(err) {
console.log(err);
})
}).catch(function(err) {
console.log('========', err);
})