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

221
votes
4answers
67k 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 ...
181
votes
6answers
99k 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.
120
votes
11answers
81k 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 ...
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 ...
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(); ...
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?
9
votes
3answers
17k views

Android canvas to jpg [closed]

I draw 2d images on the canvas using the following tutorial. http://www.designerandroid.com/?cat=3 I want to save what ever dispalying in a canvas as a jpg image, how can i do it ?? Thanks in ...
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 ...
96
votes
15answers
18k 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? ...
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 ...
107
votes
8answers
100k 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?
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 ...
51
votes
3answers
14k 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 ...
19
votes
3answers
19k views

Uploading 'canvas' image data to the server

I need to upload the canvas image data to the server (database) on the fly, i.e., I need to create a form and with an input=file, and post the image data without any user interaction.
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, ...
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 ...
12
votes
2answers
9k views

Zoom Canvas to Mouse Cursor

I'm programming a HTML5 < canvas > project that involves zooming in and out of images using the scroll wheel. I want to zoom towards the cursor like google maps does but I'm completely lost on how ...
149
votes
11answers
126k 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 ...
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 ...
12
votes
2answers
15k views

Drawing an image from a data URL to a canvas

How can i open an image in a Canvas ? which is encoded I am using the var strDataURI = oCanvas.toDataURL(); The output is the encoded base 64 image. How can i draw this image on a canvas? I ...
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 ...
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. ...
17
votes
1answer
17k views

using HTML5 Canvas - rotate image about arbitrary point

Rotate the dial on top of a semi circular(Northern Hemisphere) image as background. range could be 0 - 180 degrees. on input to the method that does canvas transformation, the dial would rotate and ...
20
votes
3answers
27k views

Canvas width and height in HTML5

Is it possible to fix the width and height of a canvas element with some variables? I am speaking of such canvas elements that only exist in Html 5. The usual way is the following : <canvas ...
27
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
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). ...
6
votes
2answers
6k views

Sending images from Canvas elements using Ajax and PHP $_FILES

I need to be able to send an image and some form fields from a client side canvas element to a PHP script, ending up in $_POST and $_FILES. When I send it like this: <script ...
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.
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 ...
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 ...
12
votes
8answers
35k views

How to resize html canvas element?

I have a canvas element defined statically in the html with a width and height. If I attempt to use JavaScript to resize it dynamically (setting a new width and height - either on the attributes of ...
11
votes
2answers
11k views

Get pixel color from canvas, on mouseover

I want to get the pixel color of the pixel under the mouse. I didn't find a complete solution yet, I don't arrive to get mouse position ... There is a complete example of this ? Get the RGB value of ...
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 ...
8
votes
2answers
20k views

converting a canvas into bitmap image in android

I am trying to develope an app on canvas ,i am drawing on canvas with bitmap .After drawing,i am trying to convert into bitmap image . can anyone give me suggession thanking you in advance
2
votes
1answer
382 views

Swing method akin to HTML5's canvas.putImageData(arrayOfPixels, 0,0)

I have some Javascript code that acts on an pixel array defined like so: screen = {'width':160, 'height':144, 'data':new Array(160*144*4)}; ... canvas.putImageData(GPU._scrn, 0,0); Where screen is ...
39
votes
11answers
19k 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 ...
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 ...
23
votes
8answers
24k 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 ...
15
votes
1answer
7k views

Tracking mouse position in canvas when no surrounding element exists [closed]

I'm having trouble in getting the mouse position w.r.t canvas. There are two cases: 1) If there is no div element surrounding the canvas div then I was able to get the mouse position. 2) When the ...
21
votes
8answers
29k 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.
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 ...
4
votes
2answers
4k views

How to drag a UserControl inside a Canvas

I'm writing my first WPF application. I have a Canvas in which user can add UserControl subclasses containing a form. User should be able to drag these UserControl around the Canvas. What's the best ...
10
votes
2answers
13k views

Cross-origin data in HTML5 canvas

I'm loading an image in js and draw it into a canvas. After drawing, i retrieve imageData from the canvas: var img = new Image(); img.onload = function() { canvas.drawImage(img, 0, 0); ...
13
votes
4answers
23k views

How to make canvas with Swing?

I'm trying to make a paint editor with Java in which I have a toolbar with the objects that I would like to paste in the canvas. I'm using swing components to make the GUI, but when I looked for the ...
11
votes
8answers
6k views

HTML5 Canvas getImageData and Same Origin Policy

I have a site running at pixie.strd6.com and images hosted through Amazon S3 with a CNAME for images.pixie.strd6.com. I would like to be able to draw these images to an HTML5 canvas and call the ...
6
votes
2answers
13k views

SECURITY_ERR: DOM Exception 18 on using getImageData in a Chrome Extension

I'm writing my first Chrome extension. I'm trying to use jQuery and the jQuery Image Desaturate plugin to desaturate an image on a page on http://www.flickr.com. I'm loading my script (and jQuery and ...
12
votes
1answer
2k views

Rasterizing an in-document SVG to Canvas

In order to answer this question properly I thought that I would: Convert an in-document SVG file to a data URL Load it into an <img> Draw that <img> to a <canvas> Convert that ...
9
votes
1answer
5k views

Chrome gives a warning when loading an SVG in an <img>

In order to display an SVG image file onto a canvas I have the following line on the HTML: <img id="soundOnImg" src="img/speaker_on.svg" style="display:none"></img> and then to draw it ...
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 ...
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!!!

1 2 3 4 5 19