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.
0
votes
0answers
32 views
Javascript functions and collisions in canvas game
I'm trying to create a simple game, and I'm working on the collisions, but I can't get the object variables to respond appropriately. In this example the checkcollision() is called during falling, and ...
3
votes
1answer
67 views
drawtriangles function in javascript
I need to do some image transformation in JavaScript.
Looking for an alternative of AS3 drawtriangles function. I used IvanK Lib, it's very powerful but works over WebGL. Need a way to do it only ...
0
votes
0answers
46 views
Collisions in simple javascript game
I'm writing a simple game in javascript and I'm wondering what the best way to handle collisions between the player and the world objects.
<script>
var isJumping = false;
var isFalling = ...
1
vote
1answer
46 views
Google fonts won't display on canvas first time
I've been wrestling with this a couple of days to no avail but it seems like it should be a simple thing.
I am unable to have Google Fonts display properly the first time a canvas is drawn. ...
0
votes
1answer
16 views
Add function to context of canvas
I'm working on creating some libraries for math in javascript, and one of those would be a grapher in canvas. What I'm aiming to do is this.
ctx.graph('sin(x)');
or something like that. How would I ...
1
vote
1answer
67 views
Scrolling Pictures with javascript
I have written a javascript that is supposed to scroll pictures across the screen using canvas. I am unable to get this to work and would appreciate any help. I was able to get this to work using ...
-2
votes
0answers
33 views
Draw rectangles on image and allow zoom after [closed]
Please help,
My web app needs to display an image,
Draw a number of rectangles over some (x,y) points of the image,
Let the user zoom in/out with the mouseover event on the image parts with the ...
0
votes
0answers
30 views
android canvas drawimage not working well
I try to put static logo over picture that token camera from user at Android.For that ı use Canvas but i dont know why all pictures not shown after put logo.token picture seem as curropted image.some ...
0
votes
1answer
36 views
Can't get counter variable in event handler
k=0;
var sf = new Array();
function draw_sf (type,sf_text,schriftgroesse,sf_width,sf_height,x0,y0,ports_top,ports_right,ports_bottom,ports_left) {
sf[k] = new Kinetic.Group({
draggable: ...
0
votes
0answers
38 views
Canvas draw advanced circle with thorns on
I know how to make circles and circle shapes with the mathematical PI, but I don't know what I am going to do if I want to make something like this:
http://imgur.com/jKh3nMq (a circle with five ...
3
votes
2answers
74 views
How to determine when a canvas has finished loading
So I was making a rather large canvas that was filled with 1x1 pixels, and I wanted to make a loading screen for it. The problem after the loop filling the canvas finishes, it alerts that it has ...
2
votes
0answers
19 views
Can you put/restrict a canvas to a layout
I'm quite new to Android programming and I'm stuck on how to get this right.
My situation is I want to draw a rectangle inside a RelatativeLayout and be able to change the shape of the rectangle ...
-6
votes
0answers
20 views
Android how to get outer boaundary of circle [closed]
Android canvas: fill with color in space between rectangle and circle outer boundary .
0
votes
0answers
32 views
Canvas gradient strokes performance FireFox
I am trying to find memory leaks in my website. So far I have found a very severe and reproducible one. It is only a serious problem in Firefox. The problem occurs when I try to use Canvas to draw ...
0
votes
1answer
75 views
Draw image on a bouncing context inside canvas
EDIT: solution some lines above.
I'm trying to have bouncing pictures with html5, canvas and some jQuery.
I've successfully made some balls bouncing, but I can't figure out how to draw pictures ...
3
votes
1answer
71 views
collisions detection between my player and a block from a 2d-array
I'm trying to make a little game just for the fun of it where i have some collision problems.
I have a player drawn on a canvas and some blocks (16 x 16px) drawn on another canvas.
But i have a ...
0
votes
2answers
36 views
Library for drawing resizable vectors with Canvas? [closed]
I'm wanting to make a simple HTML5 drawing application. However, there are plenty of tutorials out there for doing just that. I have one other requirement I wish to pursue
I want it so that for ...
-1
votes
0answers
27 views
Increase collision detection accuracy [closed]
I am working on a game using the HTML 5 canvas and JavaScript; I was wondering how I could make the collision detection more accurate. The current state of the website is here:Asteroid field
Here is ...
1
vote
2answers
50 views
How to clear drawing on a canvas in Android
I have already set up the canvas for the drawing. My problem now is how to clear the drawing.
Tried doing this to no avail.
public void clear()
{
circlePath.reset();
mPath.reset();
// ...
0
votes
1answer
25 views
canvas draw rounded rectangle in reverse?
I apologise in advance for asking this, I was kindly provided with some code to draw a rounded corner rectangle progress bar which was great:
http://jsfiddle.net/P2qTq/
I need to reverse the drawing ...
0
votes
0answers
28 views
Algorithm to turn array of x,y+colour data into longest possible straight lines of single (or near single) colour
I'm coding something that requires the outside perimeter of an image as a vector composed of straight segments of a single (or close) colour.
So far I've coded a basic edge detection (if the pixel is ...
0
votes
1answer
62 views
Uploading canvas image data results in a blank image
I'm using an ajax query to upload canvas image data, along with a few other variables. Here's what the relevant code looks like on the client side:
front_content = ...
0
votes
1answer
78 views
Get Position of Drag & Drop Element
i am using the following code: http://www.html5canvastutorials.com/kineticjs/html5-canvas-drag-and-drop-a-group-with-kineticjs/ for Drag & Drop.
My question is: How can i get the actual position ...
0
votes
1answer
78 views
html2canvas - SecurityError: The operation is insecure
I have used html2canvas.js in my project for convert my element(body) into canvas and then convert canvas to image.
My element contains images that load from cross domain.
Canvas create from element ...
0
votes
1answer
71 views
HTML5 Canvas mouse over event on canvas
I am loading an image to an canvas element + playing a soundfile
I want to play the sound again when moving the mouse over the image on the canvas.
I know how to do that adding a button under the ...
0
votes
1answer
50 views
Canvas draw an image in circular increments?
I would like to draw an image in circular (or similar) increments as a progress bar, I had originally wanted to draw this with lines in canvas but I ended up being unhappy with how it looked.
This ...
0
votes
1answer
53 views
Android draw multiple Rect as background color
I used an canvas to draw multiple textures on it. these textures are rectangles and now I want to use these textures with parts of them invisble, so I could draw background colors behind the textures ...
1
vote
1answer
75 views
is it realistically possible to make this game in HTML5+Javascript? [closed]
Using the Canvas element and JavaScript is it realistically possible to create a 2d sidescroller that has playable content for around 1 hour? With content I mean cutscenes, dialogue and of course, ...
2
votes
0answers
41 views
Loading images to specific coordinates in SCanvasView
I am creating an android application and am working with canvas bitmaps (specifically the Samsung SPen SDK). I currently have the functionality I want working working, but the way the loading is ...
0
votes
1answer
14 views
html5 canvas rotate accepting invalid radians
I have no problem rotating a canvas. My question is that in the examples I have seen, and I've verified it, if I use an ever-increasing angle and hence an ever-increasing radian after conversion ...
0
votes
1answer
22 views
Interactive visualization in 3D using non-flash technologies?
How can one recreate the 3D feeling of this interactive visualization (done in Flash) in HTML5/SVG/Canvas or similar? Are there any JS libraries you can recommend?
...
0
votes
1answer
41 views
Sprite movement with Android Canvas very slow
Okay, so I've been working on a simple game in Android using Canvas and threading. (I extend SurfaceView and implement Runnable).
The code for my run loop is:
@Override
public void run()
{
...
2
votes
2answers
38 views
Canvas not showing
I've followed tutorials regarding creating a canvas, however it is not working and neither is the rectangle drawn on it. Is it a necessity to have the script in the <head>? Any help would be ...
0
votes
1answer
34 views
How to determine if a collision is new or continued from last frame
I have this function which detects the collision between to objects. It is called within a Ticker (FPS 60). The if statement will run as long as the two objects are together. I think this has ...
0
votes
1answer
38 views
how to proxy s3 images through ec2
Because IE10 and its predecessors do not support Image's crossOrigin, a client's canvas cannot show images from s3/cloudfront.
To solve this problem, I assume I will need to proxy the data via my ...
1
vote
1answer
51 views
Never-ending floor in THREE.JS scene
What would be the best way to create a continuous-in-every-direction floor in my canvas three.js scene?
Would it be better to attach a THREE.PlaneGeometry to the camera position, so that it travels ...
0
votes
2answers
41 views
Kineticjs load json canvas
I always got the error:
"TypeError: Kinetic[type] is not a constructor"
"ReferenceError: reference to undefined property obj.nodeType"
when i try to load one json.
json = stage.toJSON();
stage = ...
0
votes
1answer
80 views
Img src changes but not the actual image
I'm changing image by clicking on a button. I can see in the src code that the image is changed, but the actual image isn't changing in the browser. How come, and how to solve it?
// ...
0
votes
1answer
32 views
jCanvas's clearCanvas does not seem to work with layers
I've organized my jCanvas code into a render method which fires on window.resize:
<script type="text/javascript">
var middleX;
var middleY;
var canvas;
var ctx;
var ...
1
vote
1answer
29 views
Filling pseudo 3D canvas shapes
Currently I'm playing around with pseudo 3D shapes in canvas 2d context. However, I stuck yet at filling the shape sides.
Here's the drawing function I wrote:
Shape.prototype.draw = function (ctx) ...
2
votes
3answers
78 views
Which canvas framework to choose and why? [closed]
I'm about to create something similar to this: http://platogo.com/avatars, which I'll do with Javascript and HTML5 with canvas.
Instead of buttons to change the appearance I want the user to be able ...
0
votes
1answer
20 views
KineticJS - How to find out which object were dragged?
is there some possibility, how to realise, which object were moved? If I had for example 5 object on canvase and I would move one object, is there any information about what changed since any time? ...
0
votes
0answers
42 views
Android - drawline with hardware acceleration and antialiasing causes artifacts
I am working on an Android custom graph view that uses Canvas#drawLines and a paint object that has antialiasing turned on. My view has hardware acceleration turned on. Occasionally when I pinch zoom ...
0
votes
1answer
52 views
HTML5: Canvas Context fillText/strokeText does not draw
I am following a tutorial from Dev.Opera about HTML5 Painting application and trying to improve it by adding a text tool that prompts user of what text they wanted to input after clicking on ...
0
votes
1answer
72 views
HTML 5 canvas DrawImage only working after refresh
I have an issue with drawing to the canvas, I have an array of image information that i loop through and create image objects from. On each images onload event i draw it to the canvas, however this ...
1
vote
1answer
75 views
Canvas rectangle with rounded corners as a progress bar?
I'm trying to make a progress bar in the form of a rounded rectangle drawn on canvas, this jsfiddle has the shape:
http://jsfiddle.net/xT3ax/
this.beginPath();
this.moveTo(x + ...
0
votes
0answers
39 views
Applying a transformation matrix relative to another matrix
I have a heirarchy of objects which pass the canvas object around adding things to it.
For transformations, I would like them to be done relative to the parent.
For example, lets say I have a widget ...
0
votes
0answers
32 views
Canvas.toBlob polyfill not working with createObjectURL in Chrome
My app requires the manipulation and temporary storage of many large images. In order to manage this efficiently we are using blob URL references to all images.
However, following manipulations we ...
0
votes
1answer
27 views
Javascript set <canvas> to window size
I am attempting to set a canvas element to the size of the current window.
I did so successfully with jquery here:
function windowsize() {
WIDTH = $("#canvas")[0].width = ($(window).width());
...
2
votes
2answers
92 views
Trying to create a confetti effect in html5, how do I get a different fill color for each element?
I'm building off of the code I found in this link
http://thecodeplayer.com/walkthrough/html5-canvas-snow-effect
I want to make this more of a confetti falling effect than a snow effect, and I would ...




