angular-base64-upload icon indicating copy to clipboard operation
angular-base64-upload copied to clipboard

How to preview the file

Open yogendrakarekar opened this issue 6 years ago • 1 comments

The plugin should also return a data url with which we can preview the file in browser

yogendrakarekar avatar Dec 14 '17 09:12 yogendrakarekar

the format to preview image is : data:[image/type];base64,[base64 string]

example: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAG.....

These info are all available in the plugin

To use it in browser:

<img ng-src ="data:{{model.filetype}};base64,{{model.base64}}" >

adonespitogo avatar Dec 20 '17 12:12 adonespitogo