-
Notifications
You must be signed in to change notification settings - Fork 178
New issue
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
How to save an image along with the annotations? #204
Comments
Any answer for this question? |
@nadavof You can use canvas to redraw the image and caption frame then export it as an image |
Hi guys, I've got the same issue, So I code it like this:
Briefly, I'll share with you what I wrote on my project and enjoy it. const canvas = document.getElementById("myCanvas")
const ctx = canvas.getContext("2d")
const image = new Image()
image.src = imageUrl
image.crossOrigin = "Anonymous"
image.onload = () => {
ctx.drawImage(image, 0, 0, canvas.width, canvas.height)
output.images[0].regions.forEach((obj) => {
ctx.strokeStyle = obj.color
ctx.lineWidth = 2
ctx.strokeRect(
obj.x * canvas.width,
obj.y * canvas.height,
obj.w * canvas.width,
obj.h * canvas.height
)
ctx.font = "20px Arial"
ctx.fillStyle = obj.color
ctx.fillText(1, obj.x * canvas.width, obj.y * canvas.height - 10)
ctx.globalAlpha = 0.2
ctx.fillStyle = obj.color
ctx.fillRect(
obj.x * canvas.width,
obj.y * canvas.height,
obj.w * canvas.width,
obj.h * canvas.height
)
})
const dataURL = canvas.toDataURL("image/jpeg") I'm using this function on the onExit param in Annotator |
@asyncfinkd I achieve the download task by doing this. const downloadAnnotatedImage = () => {
const divElement = document.getElementById('image-container');
const svgElement = document.getElementById('region-svg');
html2canvas(divElement, {
width: svgElement.getAttribute('width'),
height: svgElement.getAttribute('height'),
}).then(canvas => {
const dataURL = canvas.toDataURL('image/png');
const link = document.createElement('a');
link.href = dataURL;
link.download = 'downloaded-image.png';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
});
}; Here, |
Suppose I did mark some things using a box in the image, and now I want to save/export/download that image along with that box. How can we do that?
The text was updated successfully, but these errors were encountered: