Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 247 Bytes

readme.md

File metadata and controls

16 lines (12 loc) · 247 Bytes

##Text Image Merger

Merge Image Pattern with a text sentence

var tim=require('text-image-merger');
tim.generateTextImage(text)
.then(function(imageURI)
{
	res.send('<img src="'+imageURI+'" />') ;
}).catch(err){
	throw new Error(err);
}