Tagged Questions
Canvas is an HTML element introduced with HTML5. It provides a way to draw pixel data on screen through the use of JavaScript.
88
votes
13answers
26k views
SVG vs CANVAS, where is the Web World going towards?
I need to pick one of two technologies (svg, canvas) for an ongoing project of mine. I would prefer to pick the technology that is more maintained and in active development rather then choose a ...
58
votes
3answers
7k views
Using HTML5/Canvas/Javascript to take screenshots
Google's "Report a Bug" or "Feedback Tool" lets you select an area of your browser window to create a screenshot that is submitted with your feedback about a bug.
screenshot by Jason Small, posted ...
58
votes
12answers
7k views
What is the current state of the art in HTML canvas JavaScript libraries and frameworks?
I am currently investigating options for working with the canvas in a new HTML 5 application, and was wondering what is the current state of the art in HTML canvas JavaScript libraries and frameworks?
...
56
votes
4answers
34k views
Capture HTML Canvas as gif/jpg/png/pdf?
Is it possible to capture or print what's displayed in an html canvas as an image or pdf? I'd like to generate an image via canvas, and I'd like to be able to generate a png from that image.
50
votes
8answers
29k views
How do I get the coordinates of a mouse click on a canvas element?
What's the simplest way to add a click event handler to a canvas element that will return the x and y coordinates of the click (relative to the canvas element)?
No legacy browser compatibility ...
47
votes
10answers
30k views
Resizing an image in an HTML5 canvas
I'm trying to create a thumbnail image on the client side using javascript and a canvas element, but when I shrink the image down, it looks terrible. It looks as if it was downsized in photoshop with ...
47
votes
6answers
37k views
How to clear the canvas for redrawing
After experimenting with composite operations and drawing images on the canvas I'm nog trying to remove images and compositing. How do I do this?
I need to clear the canvas for redrawing other ...
42
votes
7answers
34k views
HTML5 Canvas resize to fit window
How can I automatically scale the HTML5 <canvas> element to fit the page?
For example, I can get a <div> to scale by setting height and width to 100%, but a <canvas> won't scale, will it?
35
votes
6answers
5k views
Can you take a “screenshot” of the page using Canvas?
I have a page where we're positioning a bunch of elements using CSS, and changing their "top and left" positions using JS.
I've had reports that these things have been misaligned, but a user has ...
31
votes
5answers
59k views
Rotating a Div Element in jQuery
Trying to rotate a div element...This might be DOM blasphemy, could it work possibly with a canvas element? I'm not sure - if anybody has any ideas of how this could work or why it doesn't, I'd love ...
28
votes
4answers
13k views
Canvas Tutorial / Reference
Can somebody please refer me to a comprehensive tutorial on Canvas which covers all properties / functions?
I also need a definite reference on Canvas - something like w3schools
23
votes
6answers
7k views
Why does canvas.toDataURL() throw a security exception?
Did I not get enough sleep or what? This following code
var frame=document.getElementById("viewer");
frame.width=100;
frame.height=100;
var ctx=frame.getContext("2d");
var img=new Image();
...
23
votes
9answers
7k views
Android: How to detect when a scroll has ended
I am using the onScroll method of GestureDetector.SimpleOnGestureListener to scroll a large bitmap on a canvas. When the scroll has ended I want to redraw the bitmap in case the user wants to scroll ...
20
votes
2answers
6k views
Zoom in on a point (using scale and translate)
I want to be able to zoom in on the point under the mouse in canvas with the mouse whell, like when zooming on maps.google.
I'd like straight code as I've been working on this for 5h+ 15h
Something ...
20
votes
6answers
19k views
How can I use the HTML5 canvas element in IE?
I am trying to use the HTML5 canvas element to draw some arcs and circles - this works perfectly in FF but IE8 does not seem to support it.
Now, there exist Javascript libraries which seem to make ...
20
votes
6answers
7k views
How can you find the height of text on an HTML canvas?
The spec has a context.measureText(text) function that will tell you how much width it would require to print that text, but I can't find a way to find out how tall it is. I know it's based on the ...
19
votes
7answers
8k views
What are the frameworks for creating HTML5 <canvas> applications?
Yesterday I ran across the jcotton framework for creating canvas applications and I was wondering what the state of the art is.
Do other such frameworks exist?
If so what are their ...
19
votes
4answers
17k views
getPixel from HTML Canvas?
Is it possible to query a HTML Canvas object to get the color at a specific location?
18
votes
2answers
16k views
html5 - canvas element - Multiple layers
Without any extension library, is it possible to have multiple layers in the same canvas element?
So if I do a clearRect on the top layer, it will not erase the bottom one?
Thanks.
18
votes
6answers
4k views
Best way to detect that HTML5 <canvas> is not supported
The standard way to deal with situations where the browser does not support the HTML5 <canvas> tag is to embed some fallback content, usually a polite version (and sometimes a less polite ...
17
votes
1answer
3k views
Setting Canvas properties in an ItemsControl DataTemplate
I'm trying to databind to this ItemsControl:
<ItemsControl ItemsSource="{Binding Path=Nodes, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<ItemsControl.ItemsPanel>
...
16
votes
3answers
2k views
Html5 Canvas vs SVG vs div
What is the best way for element creation on the fly and being able to move it around?
Let's say I want to create rectangle, circle and polygon then I want to select the objects and move it around
...
16
votes
5answers
1k views
Canvas Image Smoothing
What is
ctx.mozImageSmoothingEnabled = false;
for webkit(or other browsers)? I need it to remove anti-aliasing because i am trying to get a pixelized effect to an image. With anti-aliasing, it ...
16
votes
5answers
11k views
Is it possible to bind a Canvas's Children property in XAML?
I'm a little surprised that it is not possible to set up a binding for Canvas.Children through XAML. I've had to resort to a code-behind approach that looks something like this:
private void ...
16
votes
4answers
6k views
Can I turn off antialiasing on an HTML <canvas> element?
I'm playing around with the <canvas> element, drawing lines and such.
I've noticed that my diagonal lines are antialiased. I'd prefer the jaggy look for what I'm doing - is there any way of ...
15
votes
2answers
4k views
Canvas is stretch when using CSS but normal with old “width” and “height” properties
I have 2 canvas, one use old html "width" and "height" to size it, the other use CSS
<canvas id="compteur1" width="300" height="300" onmousedown="compteurClick(this.id);"></canvas>
...
15
votes
6answers
8k views
How to draw an oval in html5 canvas?
There doesnt seem to be a native function to draw an oval-like shape. Also i am not looking for the egg-shape.
Is it possible to draw an oval with 2 bezier curves?
Somebody expierenced with that?
My ...
14
votes
2answers
489 views
Is there a way to programmatically test for browser GPU acceleration?
I want to include a few "bells and whistles" features on a site I'm currently developing, but I don't want to bog down the entire machine for my users. Is there a way I can test to see if the current ...
14
votes
1answer
7k views
Measuring text width to be drawn on Canvas ( Android )
Is there a method which returns the width ( in pixels ) of a text to be drawn on an Android canvas using the drawText() method according to the Paint used to draw it.
Thx.
14
votes
6answers
6k views
Creating heatmaps using <canvas> element?
Are there any JavaScript libraries out there that allow you to create heatmaps using in-browser graphic rendering features such as <canvas> or SVG?
I know about HeatMapAPI.com, but their heat ...
14
votes
5answers
11k views
Javascript Sprite Animation Library for Canvas Tag
Can you point me to a good Javascript sprite animation library using the HTML Canvas tag?
A few Google searches only turned up some non-canvas projects. I am looking for something clean and simple.
...
13
votes
2answers
254 views
Invalid blending results across all browsers with HTML5 canvas
Summary
When repeatedly drawing anything (apparently with a low alpha value) on a canvas, regardless of if it's with drawImage() or a fill function, the resulting colors are significantly inaccurate ...
13
votes
5answers
4k views
Are photoshop-like blend modes possible in HTML5?
I want to put a red rectangular <div> element over my webpage so that it would look not only transparent, but also like blended in Photoshop’s Multiply mode.
The <div> would have ...
13
votes
1answer
4k views
Measuring text height to be drawn on Canvas ( Android )
Any straight forward way to measure the height of text?
The way I am doing it now is by using Paint's measureText() to get the width, then by trial and error finding a value to get an approximate ...
13
votes
3answers
7k views
HTML5 Canvas: Zooming
Is there any easy way how to zoom in and back out in canvas (JavaScript)? Basically I have a 400x400px canvas and I'd like to be able to zoom in with 'mousedown' (2x) and go back with 'mouseup'.
...
13
votes
8answers
6k views
Is there a way to curve / arc text using CSS3 / Canvas
I'm trying to curve text this effect using CSS3, HTML Canvas, or even SVG (see image below for example)? Is this possible? If so, how can I achieve this effect?
Update: To clarify: The text that will ...
12
votes
3answers
2k views
“Erasing” in html5 canvas
I have a doodling application in html5 canvas, and I'm trying to figure out the best way to implement an eraser control. First impulse was just to have the eraser draw the background color [white], ...
12
votes
5answers
9k views
Does HTML5/Canvas Support Double Buffering?
What I'd like to do is draw my graphics on a buffer and then be able to copy it as is to the canvas so I can do animation and avoid flickering. But I couldn't find this option. Anyone know how I can ...
12
votes
3answers
8k views
Canvas and HTML5: Supported Browsers?
I am looking at using HTML5 Canvas element for my upcoming project. I want to know what all major browsers (including the versions!, cos i know that the latest builds do support canvas) support the ...
12
votes
6answers
3k views
javascript game framework
Nowadays with <canvas>, it is easy to find all kind of cool stuff around the net. Like emulators, demos, games, just visual stuff, etc.
But it seems that everyone is programming using the basic ...
12
votes
7answers
12k views
Detect mouseover of certain points within an HTML canvas?
I've built an analytical data visualization engine for Canvas and have been requested to add tooltip-like hover over data elements to display detailed metrics for the data point under the cursor.
For ...
11
votes
6answers
5k views
dotted stroke in <canvas>
I guess it is not possible to set stroke property such as CSS which is quite easy. With CSS we have dashed, dotted, solid but on canvas when drawing lines/or strokes this doesn't seem to be an option. ...
11
votes
1answer
8k views
HTML5 canvas click event
I made an array of squares
ctx.fillStyle = "rgb(0,0,0)";
for(x=0;x<=25;x++){
for(y=0;y<=25;y++){
ctx.fillRect(x, y, 20, 20);
}
}
and I want a square to change its colour when ...
11
votes
7answers
2k views
Getting started with canvas (HTML5)
I want to do some user interaction animations with HTML5 canvas, but I don't know where to start. Are there some articles or lecture about canvas?
Edit: not just online lecture, I'm also interested ...
11
votes
5answers
8k views
Scrolling a Canvas smoothly in Android
I'm new to Android.
I am drawing bitmaps, lines and shapes onto a Canvas inside the OnDraw(Canvas canvas) method of my view. I am looking for help on how to implement smooth scrolling in response to ...
11
votes
2answers
13k views
jQuery - use canvas to draw lines between divs
I have n <div>s, each with <h1> title and <ul> list of items in.
I would like to float these over a canvas and draw lines from <div id="x"> list item y to <div id="z">. I am using ...
10
votes
3answers
278 views
Performance issues with HTML to canvas, where to begin?
I have been working on an experiment to render HTML into a canvas image, by having javascript read all the necessary information from the loaded DOM. As canvas lacks many of the standard parts of CSS, ...
10
votes
1answer
291 views
SVG draws outside canvas boundary in Internet Explorer 9
I am using the Raphael Javascript library to do some rudimentary drawing for a web page. I am just drawing some lines that radiate out from a point. In Chrome, Firefox, and Opera, these lines are ...
10
votes
5answers
783 views
Cancel single image request in html5 browsers
I'm loading (large) images dynamically to draw into a html5 canvas, something like this:
var t = new Image();
t.onload = ...
t.src = 'http://myurl';
But every once in a while would like to cancel ...
10
votes
2answers
2k views
jQuery equivalent of getting the context of a Canvas
I have the following working code:
ctx = document.getElementById("canvas").getContext('2d');
Is there any way to re-write it to use $? Doing this fails:
ctx = $("#canvas").getContext('2d');