Canvas is an drawing element introduced to web development with HTML5, but also exists in Android and WPF development. Use the more specific tags where possible.

learn more… | top users | synonyms

220
votes
4answers
66k 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 ...
180
votes
4answers
98k 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.
164
votes
2answers
5k views

Why are my balls disappearing?

Pardon the funny title. I've created a little graphic demo of 200 balls bouncing and colliding, both against the walls and each other. You can see what I have currently here: ...
147
votes
11answers
124k views

How to clear the canvas for redrawing

After experimenting with composite operations and drawing images on the canvas I'm now trying to remove images and compositing. How do I do this? I need to clear the canvas for redrawing other ...
119
votes
11answers
80k 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 ...
107
votes
8answers
99k 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?
96
votes
15answers
17k 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? ...
92
votes
10answers
73k 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 ...
55
votes
8answers
19k 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 ...
50
votes
3answers
13k 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 ...
49
votes
7answers
100k 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 ...
47
votes
3answers
45k 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.
47
votes
3answers
17k 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 ...
46
votes
7answers
19k 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(); ...
44
votes
7answers
58k 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 ...
44
votes
5answers
20k 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
44
votes
3answers
10k views

Canvas is stretched when using CSS but normal with “width” / “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> <canvas ...
43
votes
2answers
10k 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');
41
votes
5answers
42k views

HTML5: write text on canvas

Is it possible to write text on HTML5 canvas? I've googled for that, found some workaround but no good description... Please advise, thanks!
41
votes
6answers
68k views

How to change the opacity (alpha, transparency) of an element in a canvas element after it has been drawn?

Using the HTML5 <canvas> element, I would like to load an image file (PNG, JPEG, etc.), draw it to the canvas completely transparently, and then fade it in. I have figured out how to load the ...
40
votes
1answer
20k 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.
39
votes
11answers
18k 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 ...
38
votes
4answers
35k views

getPixel from HTML Canvas?

Is it possible to query a HTML Canvas object to get the color at a specific location?
35
votes
11answers
16k 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 ...
34
votes
7answers
29k views

How to draw a rounded Rectangle on HTML Canvas?

I found that there are only can fill rectangle, but no rounded corner one, how can I do that?
34
votes
9answers
23k 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 ...
32
votes
11answers
21k 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 ...
32
votes
3answers
16k views

Capture Signature using HTML5 and iPad

Anyone know how this can be done? Would you use a canvas object, svg, jQuery, etc?
31
votes
9answers
19k 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. ...
30
votes
5answers
19k 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 ...
27
votes
5answers
15k 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 ...
27
votes
5answers
15k views

HTML5 Canvas Vector Graphics?

Please tell me what libraries for drawing and handling of vector graphics within HTML5 Canvas do you know? Thank you!!!
27
votes
1answer
5k 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> ...
26
votes
3answers
15k 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 ...
26
votes
11answers
19k 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 ...
24
votes
2answers
5k views

Fast and responsive interactive charts/graphs: SVG, Canvas, other?

I am trying to choose the right technology to use for updating a project that basically renders thousands of points in a zoomable, pannable graph. The current implementation, using Protovis, is ...
24
votes
5answers
7k views

Disable Interpolation when Scaling a <canvas>

NOTE: This has to do with how existing canvas elements are rendered when scaled up, not to do with how lines or graphics are rendered onto a canvas surface. In other words, this has everything to do ...
24
votes
3answers
20k views

HTML5 Canvas 100% Width Height of Viewport?

I am trying to create a canvas element that takes up 100% of the width and height of the viewport. You can see in my example here that is occurring, however it is adding scroll bars in both Chrome ...
24
votes
3answers
8k 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], ...
24
votes
9answers
13k views

Drawing text to <canvas> with @font-face does not work at the first time

When I draw a text in a canvas with a typeface that is loaded via @font-face, the text doesn't show correctly. It doesn't show at all (in Chrome 13 and Firefox 5), or the typeface is wrong (Opera 11). ...
23
votes
8answers
16k 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 ...
23
votes
8answers
23k 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 ...
22
votes
6answers
15k views

How can I convert an HTML element to a canvas element?

It would be incredibly useful to be able to temporarily convert a regular ol' element into a canvas. For example, say I have a styled div that I want to flip. I want to dynamically create a canvas, ...
22
votes
6answers
5k 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 ...
21
votes
8answers
27k views

Android, canvas: How do I clear (delete contents of) a canvas (= bitmaps), living in a surfaceView?

I try to make a simple game. I found (and put to use) a template that draws a canvas with bitmaps like this: private void doDraw(Canvas canvas) { for (int i=0;i<8;i++) for (int ...
21
votes
4answers
23k views

How to draw a filled triangle in android canvas?

So I'm drawing this triangle in android maps using the code below in my draw method: paint.setARGB(255, 153, 29, 29); paint.setStyle(Paint.Style.FILL_AND_STROKE); ...
20
votes
8answers
28k views

Getting mouse location in canvas

Is there a way to get the location mouse inside a <canvas> tag? I want the location relative to to the upper right corner of the <canvas>, not the entire page.
20
votes
4answers
9k views

how to draw smooth curve through N points using javascript HTML5 canvas?

For a drawing application I'm saving the mouse movement coordinates to an array then drawing them with lineTo. The resulting line is not smooth. How can I produce a single curve between all the ...
20
votes
5answers
19k views

HTML5 Canvas or SVG world map [closed]

I'm searching for open source implementation of world map for HTML5 Canvas or any JS library. I need simple vector world map with landscape and zoom. It would be good if it works on iOS/Android/BB OS. ...
20
votes
1answer
11k views

Kineticjs vs Raphaeljs

I'm starting a new project using HTML5. Two of the most popular graphical toolkits are KineticJS and RaphaelJS. If you have experience of using these, do you have any advice? Which features do they ...

1 2 3 4 5 166