Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,16 @@ You can pass other parameters supported by the ImageKit upload API using the sam
minConfidence: 80,
maxTags: 10
}
]
],
transformation: {
pre: 'l-text,i-Imagekit,fs-50,l-end',
post: [
{
type: 'transformation',
value: 'w-100'
}
]
}
}, function(err, result) {
console.log(result);
})
Expand All @@ -394,7 +403,16 @@ You can pass other parameters supported by the ImageKit upload API using the sam
minConfidence: 80,
maxTags: 10
}
]
],
transformation: {
pre: 'l-text,i-Imagekit,fs-50,l-end',
post: [
{
type: 'transformation',
value: 'w-100'
}
]
}
}).then(result => {
console.log(result);
}).then(error => {
Expand Down