]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/root-helpers/images.ts
Translated using Weblate (Icelandic)
[github/Chocobozzz/PeerTube.git] / client / src / root-helpers / images.ts
CommitLineData
42b40636
C
1import { logger } from './logger'
2
0ea2f79d
C
3function imageToDataURL (input: File | Blob) {
4 return new Promise<string>(res => {
5 const reader = new FileReader()
6
42b40636 7 reader.onerror = err => logger.error('Cannot read input file.', err)
0ea2f79d
C
8 reader.onloadend = () => res(reader.result as string)
9 reader.readAsDataURL(input)
10 })
11}
12
13export {
14 imageToDataURL
15}