0
votes
2answers
31 views

Fitting element into table cell

I am trying to fit a canvas element into a table cell with no padding at all, i.e. I want no margins between my canvas and top/bottom of the cell. Therefore, I define row height as 20px and canvas ...
0
votes
0answers
21 views

Canvas & Transformation matrix: 3d rotation impossible due to Matrix limitation of context.setTransform()?

I'm just curious if anyone else has been working with the transformation parameters of "DrawImage()" in javascript HTML5 and how the matrix relates to it. Possibly someone has bumped into the same ...
0
votes
1answer
54 views

img src doesn't work when I use local files

I've had problems with getting a rain effekt on my canvas. After some searching on google I found this <script type="text/javascript"> var ctx; var imgBg; var imgDrops; var x = 0; var y = ...
1
vote
1answer
23 views

Is the need to preload in image alleviated if you use a base64 encoded image?

If you make a new image and define is source do you need to preload? For example: var image = new Image(); image.src = 'data:image/jpeg;base64,/9j/4Q+sRXhpZgAATU0AKgAAAAgABw...'; // Append image to ...
0
votes
1answer
23 views

Smooth animations in kinetic.js (html5 canvas)

I need a better understanding of kinetic.js animation. I was using the tutorial found http://www.html5canvastutorials.com/kineticjs/html5-canvas-stop-animation-with-kineticjs/ . I played with the code ...
2
votes
1answer
28 views

Add new contexts to canvas objects

I'm making a canvas framework in javascript and I wanted to know if there was some way to add a new type of context to the canvas rather than 2d var ...
4
votes
1answer
31 views

How can I feature test a browser's ability to use video as a canvas source

As some of you might know it's not possible to use HTML5 video as an image source for canvas elements on mobile devices (the video will be opened in an external player instead of the browser). I need ...
0
votes
1answer
23 views

Get co-ordinate points of image after rotation and translation?

I currently draw some images (obstacles) to the canvas but I perform context.rotate() and context.translate() before I draw them (at 0,0 point after the point translation). I need to create ...
1
vote
1answer
28 views

Why isn't “sprite” defined inside this function? [duplicate]

Fiddle in question: http://jsfiddle.net/dqDAv/2/ In line 146 I pass the object "Player" in as a parameter of sprite in the method render() Object var player = new Sprite({ 'left': ...
1
vote
2answers
40 views

How to add context methods to an object

I'm making a library for math graphing in canvas, and before, my approach was to directly add methods to the global context prototype, as such CanvasRenderingContext2D.prototype.point=function(x,y){ ...
8
votes
2answers
130 views

JS game - shooting in random directions [closed]

I am working on a HTML5 canvas / Javascript based game. It is a fighter jet game, after I pass specific score my main boss will spawn. Everything works like I wanted to but, I dont how to do boss ...
3
votes
4answers
68 views

Html over the Canvas?

Can someone clear up some some confusion on my part. Is it possible to have html over the top of a canvas? I keep reading that you can't have GUI elements such as Jquery with Canvas, but then I read ...
1
vote
2answers
46 views

Comparing lines on a canvas

I have a canvas on which i'm drawing 4 lines. I need to then compare the accuracy of those lines drawn against the coordinates of 4 predefined lines. Can i do this with canvas? thanks.
0
votes
0answers
20 views

Canvas with JQuery type GUI?

I want to create an online app that allows people to move graphic elements around, via the canvas, but I also want the user to be able to select objects, use drop down menus etc, as can be found in ...
0
votes
2answers
23 views

Unexpected behavior of strokeStyle in canvas

I'm working on a Javascript graphing library in javascript, and I have a function that draws the grid, with each gridline having one color, and the axes having another color. The relevant code is at ...
2
votes
1answer
40 views

Kinetic JS shape shadows get more visible when adding another shape

First, I'm required to use version kinetic-v4.3.3 due to a group dragging (known) bug in the latest version. So I have a kinetic structure as follows: ShapesGroup ShapeGroup Circle Text ...
0
votes
2answers
28 views

image url to canvas and save

I am trying to load an image from a URL to the canvas, and then display the image to be saved. I can display the image in the canvas but when I trying to display the image as a base64 string it it ...
1
vote
2answers
57 views

Rasterize a dynamically generated SVG

I'm trying to convert an SVG graph I generated into a printable image. From my research, I assumed I'd have to somehow make a canvas out of the SVG, then make an image out of that. However, every ...
0
votes
1answer
29 views

Kinetic.js: Get MinX, MaxX, MinY, and MaxY of rotated Kinetic.Label

I'm trying to prevent a rotated Label from being dragged off the screen, but I cannot figure out how to get MinX, MaxX, MinY, and MaxY of the object in its rotated state. getHeight & getWidth only ...
4
votes
2answers
69 views

Image not drawn on canvas until user clicks?

I draw several images with a function that performs something similar to: context.drawImage(img, width / 2 * (-1), height / 2 * (-1), width, height); I've read that I need to wait for the image to ...
0
votes
2answers
36 views

Google map polygon not rendering correctly in IE (9 and 10)

I hope this question is not confusing or too complex. but here we go: I'm creating a custom google map that renders some US states as polygon overlays with the "google.map.Polygon' method. Everything ...
2
votes
1answer
28 views

Hover at 1 image in mutil images of canvas

I am try writing a demo using hover in canvas. This is the problem: - I have 1 canvas and in this have 2 images. - I want when i hover in 1 of 2 images this change (in this case is change color). But ...
1
vote
2answers
38 views

javascript variables - html5 canvas issue

In the following code, I change html canvas 5 font by passing string. Then in the second case I use an array and variables. The first case works. The second case does not change fonts. Problem is ...
0
votes
1answer
32 views

Canvas requestAnimationFrame pause

How to pause canvas animation made with requestAnimationFrame ? I start animation like this: Code: window.requestAnimFrame = (function() { return window.requestAnimationFrame || ...
0
votes
0answers
22 views

Unable to run paper.js from .html file

Dear all I didn't find a normal explanation so I decided to ask for your help. I want to create a paper.js project in html file. The problem that I cannot connect them I tried to use var scope = new ...
1
vote
2answers
32 views

Draw image with x,y relating to the center point for the image?

I'm trying to draw an image at co-ordinate points x,y with x and y being in the center of the image. I have this code that I found earlier for rotating an image: function ...
2
votes
2answers
42 views

Canvases in table, weird padding

Intro: I'm making a website and I want to make a <table/> with <canvas/>es in it. What I have done: I made a <table/> with some <canvas/>es in it so I can draw in them. ...
0
votes
1answer
22 views

update animation based on time in javascript(independent of frames)

I am implementing a simple animation using javascript in canvas.An image updates its position based on the time elapseddt between each frame. Here is the code var lastTime=0; var speed=100; ...
0
votes
1answer
20 views

html5 canvas rotate and move issue

I am trying rotate 180 degree , and move object. But this not works for me . I added it in jsfiddle var enemy = enemeis[i]; // 45 shows some rotation, I want 180% var rangle = 45 * ...
0
votes
1answer
21 views

Draw text along the bezier curve in paper.js

Is it possible to easily draw text along the bezier curve using paper.js? I know it is possible to attach text to a line path and then rotate it, but I am interested specifically in drawing text ...
0
votes
0answers
24 views

Printing a webpage with canvas

I am using canvas on this project I am working on to allow users to add their signature. I am having a very hard time printing this canvas signature out on paper. Using Google Chrome, the canvas ...
0
votes
1answer
29 views

Get canvas size from its context

I'm building a few libraries for canvas graphing in javascript, and I was wondering if there was any way to get the size of the canvas from it's 2D context. I was looking for something like this. var ...
0
votes
0answers
31 views

Rotating an image around a point of axis depending on browser width/height

I'm trying to put some code together that will take an image that is pointing to another part of the site and adjust it based on the users current browser width/height so that it is always facing ...
0
votes
1answer
35 views

HTML5 Javascript: Save text onto canvas?

If you take a look at what I've done so far it'll help explain what I'm after, as I'm terrible at explaining normally haha. http://logomakr.bugs3.com/ On my drawing app I've implemented the ability ...
0
votes
2answers
64 views

Is context.clearRect() really THAT expensive?

I have this piece of canvas animation that is exhibiting some weird characteristics: http://jsbin.com/olasol/2/edit I'm on the latest version of Chrome. I'm using Chrome's inbuilt FPS monitor (you ...
1
vote
1answer
18 views

Canvas, my eraser does not work

I tried to provide an eraser as if it was a brush, to erase distinctively. I have a black rect and a picture as canvas background. How can I erase parts of the rect? "Erasing" in html5 ...
6
votes
2answers
112 views

Images not loading on website

The problem I have is that when the page is loaded sometimes it displays all the images, sometimes just 2 images and sometimes all. I don“t know why this is happening. Any ideas? $('#banners ...
0
votes
2answers
55 views

Array being sent as String on node.js

I am doing some experimenting with socket.io. I have a canvas that successfully sends data to the server which receives it fine. It receives a Uint8ClampedArray which is correct because that is what ...
0
votes
0answers
20 views

Rendering SVG images everywhere with Modernizr, CanVG and ExCanvas

The website I'm making (here) has all its images as SVG. But since SVGs aren't compatible everywhere (notably IE <9 and Android browser on versions 2.x), I needed to find a workaround. That ...
2
votes
1answer
44 views

HTML5 canvas clearing and redrawing with for loop

I'm playing around with JS and found a small HTML5 game tutorial that I thought would be cool to modify. (This is the outcome: http://www.lostdecadegames.com/demos...e_canvas_game/ ) So I modified it ...
1
vote
1answer
40 views

touch.identifier value is always 0 for different touch points

I was testing out the example for multi touch in canvas from Mozilla https://developer.mozilla.org/en-US/docs/Web/Guide/Touch_events Here's the issue I am facing: the identifier attribute for Touch ...
0
votes
1answer
33 views

Display the loading progress of my resources in my canvas

I'm facing a problem with canvas. No errors is returned. I'm trying to make a loader, that load every ressources like pictures, sounds, videos, etc, before the start of application. The loader must ...
0
votes
1answer
38 views

Uncaught TypeError: Cannot read property 'width' of null

I actually don't know what's happened because it was working last night. Anyway, I'm trying to make a drawing application with html5 and javascript. This is the first time I've properly looked at JS ...
0
votes
1answer
53 views

How to take a screenshot, crop it, and upload it as an image on a web form? [duplicate]

How to take a screenshot, crop it, and upload it on a web form? Is this possible with using web technologies (js/jquery or some other). Or whether it can be glued with some other desktop software ...
1
vote
0answers
44 views

Repainting a rectangle at different x, y position canvas

I have a canvas layered over a div and I am trying to paint a rectangle at position 0, 0 on load and move it to another position x, y when needed. The x, y positions I need are returning perfectly and ...
1
vote
1answer
47 views

Canvas - How to save user input in an object?

I have a application, where users can draw strokes on the canvas. How can I save the input, so that it is repainted after I cleared the canvas to erease for example rects that have been added. I used ...
-1
votes
0answers
45 views

Canvas in JavaScript/HTML doesn't work [closed]

I am trying to implement a drawing canvas that would be working both in touch Pad and mouse input. I already have some code and for me it seems OK, but it doesn't work neither om PC, nor on my phone. ...
0
votes
0answers
43 views

KineticJS - Slow performance when animating tile opacity [Example]

I'm having a problem with a grid of Rect shapes. Grid is 120 by 60. JSFiddle example here http://jsfiddle.net/5MfYR/ Here is the equivalent in CoffeeScript code: window.size = { width: ...
0
votes
0answers
27 views

KineticJS - Is fillPatternImage recalculated every redraw?

I'm building a game and have a 3000x2000 map (1 png file). I'm creating 60*40 (x*y) tiles. So I loop through the coordinates and create a tile for each set of coordinates. for ix in [0..60] for ...
-4
votes
0answers
31 views

Canvas Game - Key holding fails [closed]

There's a glitch in this game, when changing direction and holding key down the player stops for a second and then starts to move, why? Here's the game: http://shijupz.net46.net/ Do anyone know how ...

1 2 3 4 5 74