capacitor-screenshot
v6.0.1
Published
This plugin take screenshot of the app or webpage
Downloads
3,609
Maintainers
Readme
Maintainers
| Maintainer | GitHub | Social | | ---------------------- | ------------------------------------- | --------------------------------------- | | Luan Freitas (ludufre) | ludufre | @ludufre |
Installation
npm install capacitor-screenshot
ionic cap sync
yarn install capacitor-screenshot
ionic cap sync
pnpm add capacitor-screenshot
ionic cap sync
Configuration
Not needed.
Usage
import { Screenshot } from 'capacitor-screenshot';
...
Screenshot.take().then((ret: { base64: string }) => {
console.log(ret.base64); // or `data:image/png;base64,${ret.base64}`
});