We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The plugin should also return a data url with which we can preview the file in browser
The text was updated successfully, but these errors were encountered:
the format to preview image is : data:[image/type];base64,[base64 string]
data:[image/type];base64,[base64 string]
example: data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAG.....
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}}" >
Sorry, something went wrong.
No branches or pull requests
The plugin should also return a data url with which we can preview the file in browser
The text was updated successfully, but these errors were encountered: