
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
vue-polygon-cropper
Advanced tools
Vue polygon cropper lets you to crop image with any numbers of points with redo and undo functionality.
Vue polygon cropper lets you to crop image with any numbers of points with redo and undo functionality.
npm install --save vue-polygon-cropper
or with yarn
yarn add vue-polygon-cropper
Checkout here gobeam.github.io/vue-polygon-cropper/
Full Example with implementation here Example
// Global
import Vue from 'vue';
import VuePolygonCropper from 'vue-polygon-cropper';
Vue.component(VuePolygonCropper);
// Local
import VueCropper from 'vue-polygon-cropper';
export default {
components: { VueCropper}
}
...
<template>
<div id="app">
<polygon-crop :imageSource="'/demo.png'" ref="canvas"></polygon-crop>
<button @click.prevent="crop">Crop</button>
<button @click.prevent="undo">Undo</button>
<button @click.prevent="redo">Redo</button>
<button @click.prevent="reset">Reset</button>
</div>
</template>
<script>
export default {
name: 'App',
methods: {
crop: function () {
this.$refs.canvas.crop();
},
undo: function () {
this.$refs.canvas.undo();
},
redo: function () {
this.$refs.canvas.redo();
},
reset: function () {
this.$refs.canvas.reset();
}
}
};
</script>
...
Name | Type | Required | Description |
---|---|---|---|
imageSource | String | required | Image url or base64 to load on canvas. |
canvasClass | String | optional | Pass class to canvas to load your custom style. |
wrapperClass | String | optional | Pass class to div wrapper of canvas to load your custom style. |
pointerClass | String | optional | Pass class to pointer to load your custom style and customize it. |
showCanvas | Boolean | optional | Default true but pass false in order to hide image canvas. |
showPointer | Boolean | optional | Default true but pass false in order to hide pointers. |
width | Number | optional | Pass width to canvas. |
height | Number | optional | Pass height to canvas. |
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Released under the MIT License - see LICENSE.txt
for details.
FAQs
Vue polygon cropper lets you to crop image with any numbers of points with redo and undo functionality.
We found that vue-polygon-cropper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.