Tagged Questions

20
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?
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 ...
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 ...
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 ...
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');
10
votes
3answers
15k views

tutorial for HTML canvas's arc function

I can not figure out what all the parameters to the arc() function are (by experimentation) and I have not found any tutorial that seems to explain them. Where would a good explanation of the arc() ...
9
votes
5answers
7k 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!
9
votes
7answers
7k views

Are there any GUI toolkits built on top of HTML Canvas like swing,swt,gtk or qt?

Are there any GUI toolkits built on top of HTML Canvas like swing,swt,gtk or qt? So that it is possible to build applications like applets or flex gui:s inside the html canvas.
8
votes
7answers
6k views

Firefox throwing a exception with HTML Canvas putImageData

So I was working on this little javascript experiment and I needed a widget to track the FPS of it. I ported a widget I've been using with Actionscript 3 to Javascript and it seems to be working fine ...
7
votes
2answers
4k views

How to draw polygons on an HTML5 canvas?

I need to know how to draw polygons on a canvas. Without using jQuery or anything like that.
7
votes
2answers
2k views

How do I give an HTML canvas the keyboard focus using jquery?

I am implementing a game using Javascript, jquery, and the Canvas tag. How can I prevent the browser from processing keyboard shortcuts when the canvas tag has the focus? I have tried ...
7
votes
7answers
3k views

Flash vs. (Ex)Canvas vs. SVG/VML

If you were to design a graphics-heavy interactive web application (say a game like Mario Bros.) today, which of the three available technologies would you prefer - Flash, (Ex)Canvas or SVG/VML? What ...
7
votes
3answers
1k views

What are unusual and creative usages of html5 canvas

Canvas from html5 was introduced some time ago. Currently it's used (almost) only for demonstrations how cool it is - it's mainly related to painting, games and charts. Many of them can be found at ...
6
votes
4answers
384 views

Why does Google Images draw images using canvas?

Updated: Google Images does not use <canvas> any more. I noticed Google Images is using canvas to render images. <img> is used as a fallback for browsers that does not support canvas. ...
6
votes
3answers
5k 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.
5
votes
2answers
96 views

canvas default size

Chrome seems to set canvas tags a default width of 300px. This is a bit of a nuisance when I want a canvas to default to the size of it's containing div, which has an unspecified size. Using the ...
5
votes
2answers
102 views

Lots of HTML canvasses or one big one?

I'm planning an interface to show lots of little widgets (drawn on a <canvas>), which may move around (for example in a list that gets sorted different ways with jQuery). The number of widgets ...
5
votes
6answers
514 views

Is there a technical reason why canvas's drawImage() doesn't do sub-pixel rendering / antialiasing?

Ttl;dr: I need to move an image VERY slowly in canvas without obvious pixel by pixel movement. I need some sort of anti-aliasing. Recently I was tasked with animating some "cloud" drawings ...
5
votes
6answers
2k views

HTML5 multiple canvas on a single page

If we use multiple on a single html page does it hamper the performance of the application that is being developed and does the code get very bulky and require more time to load the page?
5
votes
2answers
1k views

Any software like blend for HTML5 canvas animation?

Is there any software available like blend, for working with HTML5. Especially, to do animation related stuffs.
5
votes
4answers
2k views

How to make SVG work with IE?

Does anybody know of a comprehensive library to make SVG work with IE (7 and 8 in particular)? I wanted something Javascript which could be included in my web page and which would silently convert ...
5
votes
6answers
16k 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 ...
4
votes
2answers
148 views

How do I create a canvas element in Dart?

I want to create a canvas element that I can add to an html document. The Dart recommendations seem to be to use dart:html rather then dart:dom, but as far as I can see, dart:html only contains an ...
4
votes
1answer
194 views

how to send DIV content to html5 CANVAS

Is it possible to "draw" the content of a div to a canvas... i have done the div manipulation with css, but need canvas to "save" the content to jpg with the .dataToURL function so the question is... ...
4
votes
1answer
227 views

HTML5 rotating an image with canvas

How do I rotate an image using the canvas's "rotate" function around the center of the image instead of rotating around the origin point. Consider the following example: <html> ...
4
votes
4answers
87 views

Is it possible to benchmark a user's system with javascript in the browser

As Html5 starts gaining ground, we are seeing more experiments with things like the video or canvas element. When making an experiment with the canvas for example making a firework with particles, ...
4
votes
3answers
175 views

Where to start with canvas in HTML5

I have a lot of experience with JS and HTML and I want to learn somethings of canvas. My question is where can I find some good tutorials, manuals or/and examples to start with canvas?. I saw some ...
4
votes
1answer
373 views

HTML Canvas - text-shadow not working on Mac?

Here is the code: var surface = document.getElementById("myCanvas"); if (surface.getContext) { var context = surface.getContext('2d'); context.shadowOffsetX = 2; ...
4
votes
3answers
1k views

Clear Canvas Rect (but keep background)

I'm trying to animate a circle and just moving it horizontally which works fine. However while the circle is moving, I have to do a clearRect over that circle so that it redraws it self in the ...
4
votes
5answers
2k views

can I put a html button inside the canvas?

I wanna make the buttons for the game I'm making as real html buttons, but they need to be inside the canvas. How would I go about doing this?
4
votes
5answers
259 views

Advice for switching from Flash to <canvas>

I've done a lot of Flash development and have been meaning to try out canvas for a while, but after browsing through some tutorials, I can't understand how this is supposed to replace Flash. Perhaps ...
4
votes
4answers
182 views

Equidistant points on canvas

I want to draw a variable number of equidistant points on a HTML5 canvas element, using JavaScript. How do I calculate the X/Y position of each point? EDIT: I want the distance from one point to its ...
4
votes
3answers
297 views

How is the swoosh done on beautyoftheweb.com?

On Beauty of the Web, there is a purple/blue swoosh at the beginning, if you are in IE9 or Chrome. How is that done? What is that? How come it only displays in IE9 and Chrome?
4
votes
4answers
1k views

Dynamically pixelate an html image element

I'm to take an image on a webpage, and then use javascript (or whatever would be best suited) to dynamically 'pixelate' it (e.g. into 20px squares). Then, as the user scrolls down the page, I need the ...
4
votes
4answers
7k views

Canvas Animation Kit Experiment… …how to clear the canvas?

I can make a obj to use the canvas to draw like this: MyObj.myDiv = new Canvas($("effectDiv"), Setting.width, Setting.height); Then, I use this to draw a rectangle on the canvas: var c = new ...
4
votes
7answers
7k views

Centering a canvas

How do I markup a page with an HTML5 canvas such that the canvas 1.) Takes up 80% of the width 2.) Has a corresponding pixel height and width which effectively define the ratio (and are ...
3
votes
2answers
72 views

HTML Canvas: Multiple getContext plotting at same time

I'm building a tool using websockets which allows multiple users to "draw" on each others' canvases. The user draws on a canvas, and an object containing mousedown/mouseup events and coordinates is ...
3
votes
2answers
115 views

Detect distance of HTML element from to top and to left?

I have a tag within a HTML5 document. How can I detect the distance with JavaScript from the top-left corner of the HTML page to the top left corner of the canvas tag? I need to be able to ...
3
votes
2answers
187 views

canvas ImageData remove white pixels

I have some images in html that have a white background. I need to remove the white background. I was thinking that I could make all white pixels transparent, but i dont know how to do that. I ...
3
votes
2answers
2k views

Check FPS in JS?

How would I check the fps of my javascript? I'm using this to loop: gameloopId = setInterval(gameLoop, 10);
3
votes
2answers
410 views

Can I disable every Mouse Interaction with a canvas to interact with underlying Objects?

Let's say I have a graphical effect that I want to be overlaying HTML-Text. This Element shouldn't interfere with the usability of the site, it wouldn't have any interactive purpose. Is it possible to ...
3
votes
1answer
195 views

How to draw a resized picture instead of line? (html5 canvas)

So we can have for example such function to draw a line function drawLine(g, n, x1, y1, x2, y2){ g.beginPath(); g.lineWidth = n > 0 ? n : 1; g.strokeStyle = "rgb(0, 128, 32)"; ...
3
votes
2answers
1k views

Turning the HTML5 canvas element into a link

What is the best way of turning a Canvas element into a link - by this I mean the whole canvas element, not just a part of the image. I have tried the obvious thing - wrapping the element in an A ...
3
votes
4answers
204 views

using <canvas> element from javascript

Is there any JS library designed for working with canvas elements? I don't really care about IE compatibility. I need to create objects(complex drawings with text) , draw lines between them, linear, ...
3
votes
4answers
855 views

How to add undo-functionality to HTML5 Canvas?

I have a Sketching app done in all HTML5 and Javascript, and I was wondering how I would create an Undo Button, so you could undo the last thing you drew. Any idea?
3
votes
2answers
1k views

Html Canvas Intelligent Drawing

I'm currently implementing a HTML canvas based webapp that features panning. Is there a way to use an auxiliary buffer to hold the presently visible area so when I pan I don't have to redraw the whole ...
3
votes
4answers
797 views

Using canvas to grab pixel data from page

If I have a QT video on a page (where QT is a requirement that can't be changed) how can I grab the pixel data of the current frame that is being shown with canvas? I am aware that this is possible ...
3
votes
2answers
5k views

Generate image data from HTML Canvas element

What is the best way to generate image data from the contents of an HTML canvas element? I'd like to create the image data such that it can be transmitted to a server (it's not necessary for the user ...
3
votes
3answers
4k views

What is the best way to draw text on an HTML canvas element?

The canvas element unfortunately doesn't handle text well. There are a bunch of approaches (see e.g. http://canvaspaint.org/blog/2006/12/rendering-text/ ), but they mostly seem like hacks. What can I ...
2
votes
1answer
15 views

canvas inside table

I have a markup <table cellpadding="0" cellspacing="0" class="table_report_line"> <tbody> <tr> <td> <div class="dvlefttable"> ...

1 2 3 4 5