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.
20
votes
1answer
2k views
html5 canvas strokeStyle?
I am trying to map an image to a "3d" grid that simulates cloth using strokeStyle and canvas, i have the image included but it is currently acting as a background image and not actually flowing with ...
19
votes
4answers
55k views
Android canvas draw rectangle
how to draw empty rectangle with etc. borderWidth=3 and borderColor=black and part within rectangle don't have content or color. Which function in Canvas to use
void drawRect(float left, float top, ...
19
votes
3answers
26k 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 ...
19
votes
4answers
5k views
How to draw a blurry circle on HTML5 canvas?
I'm able to draw a simple circle on HTML5 canvas, but I'd like to add some blur around it.
What I found was this website which explains the shadowBlur property which can come in handy here.
However, ...
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.
19
votes
2answers
4k views
19
votes
2answers
23k 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 ...
19
votes
4answers
24k 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'.
...
19
votes
2answers
18k views
Loading a resource to a mutable bitmap
I am loading a bitmap from a resource like so:
Bitmap mBackground = BitmapFactory.decodeResource(res,R.drawable.image);
What I want to do is make some changes to the bitmap before It gets drawn to ...
19
votes
5answers
3k views
Implementing smooth sketching and drawing on the <canvas> element
I am trying to create a drawing area with canvas. I am having trouble with making the lines look smooth when drawing curves and I also have changing line thickness in my algorithm which looks bad as ...
18
votes
3answers
25k 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 ...
18
votes
5answers
14k 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.
...
18
votes
1answer
1k views
Managing text-maps in a 2D array on to be painted on HTML5 Canvas
So, I'm making a HTML5 RPG just for fun. The map is a <canvas> (512px width, 352px height | 16 tiles across, 11 tiles top to bottom). I want to know if there's a more efficient way to paint the ...
17
votes
1answer
16k 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 ...
17
votes
7answers
9k 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 ...
17
votes
3answers
20k views
How do I get the width and height of a HTML5 canvas?
How can i get the width and height of the canvas element in JavaScript?
Also, what is the "context" of the canvas I keep reading about?
17
votes
2answers
1k views
How was this HTML5 screencast animation created?
I visited http://www.sublimetext.com today and was intrigued by the screencast animation the website has on its opening page. It looks like a mashup between video and slideshow. I've seen them at ...
17
votes
5answers
5k views
What are the advantages/disadvantages of Canvas vs. DOM in JavaScript game development?
What are advantages and disadvantages of creating games in 'pure' DOM as compared to using canvas?
17
votes
7answers
11k 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.
16
votes
2answers
22k views
How do I make a transparent canvas in html5?
how can i make a canvas transparent. i need because i want to put 2 canvases on top of each other.
16
votes
4answers
1k views
Change text color based on brightness of the covered background area?
I've thought about the following for a while already, so now I want to know your opinions, possible solutions, and so on.
I am looking for a plugin or technique that changes a text's color or ...
16
votes
2answers
9k views
How do I style html5 canvas text to be bold and/or italic?
I'm printing text to a canvas in a pretty straight forward way, as shown:
var ctx = canvas.getContext('2d');
ctx.font = "10pt Courier";
ctx.fillText("Hello World", 100, 100);
But how can I change ...
16
votes
2answers
10k views
Resizable Canvas (JQuery UI)
ANY DOM element can be made resizable according to this page: http://jqueryui.com/demos/resizable/
However, it seems that this doesn't work for the CANVAS element. Possible?
16
votes
8answers
25k views
HTML Canvas Full Screen
I'm playing with the following application using the HTML Canvas: http://driz.co.uk/particles/
At the moment it is set to 640x480 pixels, but I would like to make it full screen as it will be shown a ...
16
votes
2answers
2k views
HTML5 Canvas: better to re-draw objects or use bitmaps?
My project has an HTML5 Canvas on which graphical objects are drawn repeatedly. These objects change rapidly. Drawing them takes time. How can I make it faster?
The objects are not overly complex but ...
16
votes
5answers
14k 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 ...
16
votes
3answers
5k views
Why is setting HTML5's CanvasPixelArray values ridiculously slow and how can I do it faster?
I am trying to do some dynamic visual effects using the HTML 5 canvas' pixel manipulation, but I am running into a problem where setting pixels in the CanvasPixelArray is ridiculously slow.
For ...
16
votes
2answers
922 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 ...
16
votes
3answers
6k views
Free Open Source In-browser image editors
I'm looking for a in-browser image editing solution to integrate with my project: http://code.google.com/p/django-ray/
I got it working with Pixlr quite easily and the editor is fantastic .. however ...
16
votes
2answers
630 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 ...
15
votes
5answers
16k views
Why does my IE9 does not support canvas !
this page http://diveintohtml5.ep.io/canvas.html says that IE9 supports canvas but I've got no idea why my IE9 has Object doesn't support property or method 'getContext'
You can see my IE version: ...
15
votes
2answers
11k views
Understanding Canvas and Surface concepts
I'm struggling to understand the process of drawing to SurfaceView and therefore the whole Surface/Canvas/Bitmap system, which is used in Android.
I've read all articles and API documentation pages, ...
15
votes
2answers
10k views
How to Copy Contents of One Canvas to Another Canvas Locally
I'd like to copy ALL contents of one canvas and transfer them to another all on the client-side. I would think that I would use the canvas.toDataURL() and context.drawImage() method to implement this ...
15
votes
2answers
39k views
Android Canvas.drawText
I have a view, I'm drawing with the Canvas object in the onDraw(Canvas canvas) method. My code is:
Paint paint = new Paint();
paint.setColor(Color.WHITE);
paint.setStyle(Style.FILL);
...
15
votes
6answers
6k views
What's the best way to set a single pixel in an HTML5 canvas?
The HTML5 Canvas has no method for explicitly setting a single pixel.
It might be possible to set a pixel using a very short line, but then antialising and line caps might interfere.
Another way ...
15
votes
3answers
22k views
HTML5 Canvas: How to make a loading spinner by rotating the image in degrees?
I am making a loading spinner with html5 canvas. I have my graphic on the canvas but when i rotate it the image rotates off the canvas. How do I tell it to spin the graphic on its center point?
...
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 ...
15
votes
3answers
5k views
Browser Canvas CORS Support for Cross Domain Loaded Image Manipulation
QUESTION: What browser versions support CORS (Cross-Origin Resource Sharing) headers for Cross Domain Images used in Canvas?
CORS can apply to both cross domain XMLHttpRequests and to image requests. ...
15
votes
3answers
4k views
Maximum size of a <canvas> element
I'm working with a canvas element with a height of 600 to 1000 pixels and a width of several tens or hundreds of thousands of pixels. However, after a certain number of pixels (obviously unknown), the ...
15
votes
6answers
5k 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 ...
15
votes
2answers
3k views
Library for Canvas/SVG web-based tree graphs with layout algorithm?
Edit: mxGraph (which has this capability) is now released under a non-commercial CC license, with a supported commercial license costing around €3000. This is the best solution that I know of.
I'm ...
14
votes
7answers
10k views
14
votes
9answers
65k views
How to do a JavaScript HTML 5 Canvas image “page flip” like you commonly see in Flash?
Has anyone tried recreating the page flip effect with images like you commonly see in Adobe Flash with JavaScript and HTML 5's canvas tag?
Are there any frameworks or JQuery plug-ins that do this ...
14
votes
5answers
25k 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() ...
14
votes
4answers
37k views
How to center canvas in html5
I've been searching for a solution for a while now, but haven't found anything. Maybe it's just my search terms.
Well, I'm trying to make the canvas center according to the size of the browser window. ...
14
votes
4answers
11k views
Online Photoshop via HTML 5's Canvas?
Does anyone know an online Photoshop -like editor that utilizes Canvas? I know at least 4 Flash editors, but I'm interested in finding a Canvas based one.
14
votes
2answers
7k views
Any way to clone HTML5 canvas element with its content?
Is there any way to create a DEEP copy of CANVAS element with all drawn content?
14
votes
3answers
10k views
How can I use custom fonts in an HTML5 Canvas element?
I've looked at things like Cufon and typeface.js but they seem to be SIFR alternatives and don't allow you to set freeform coordinates and draw custom type onto a <canvas>
Anyone got any ideas?
...
14
votes
5answers
11k views
IE9 Support for HTML5 Canvas tag
I am trying to test out the canvas tag, I started with this code:
<html>
<canvas id="example" width="200" height="200">
This text is displayed if your browser does not support HTML5 ...
14
votes
5answers
9k views
HTML5 canvas ctx.fillText won't do line breaks?
I can't seem to be able to add text to a canvas if the text includes "\n". I mean, the line breaks do not show/work.
ctxPaint.fillText("s ome \n \\n <br/> thing", x, y);
The above code will ...
