The canvas element is part of HTML5 and allows for dynamic, scriptable rendering of 2D shapes and bitmap images. It is a low level, procedural model that updates a bitmap and does not have a built-in scene graph.

learn more… | top users | synonyms

0
votes
1answer
14 views

Unable to draw a rectangle in the correct position with mousemove event handler in canvas

I am attempting to make a pong clone using canvas. I however seem to have a misunderstanding how the coordinate system works in canvas in regards to events. I have created a playerPaddle class. With ...
0
votes
1answer
20 views

How to re-render html element in canvas element

I have short question. Is possible render Google maps or Bing maps to hidden element and re-render in canvas with sepia and blur effect? I think not, so, is possible do this with any kind of todays ...
3
votes
2answers
45 views

Show drawing process using JavaScript and HTML5 canvas

I am currently trying to make a little pythagoras tree application using JavaScript/JQuery and a HTML5 canvas. The algorithm works fine but sadly I am not able to see the process of drawing. The UI ...
1
vote
0answers
15 views

Convert Canvas DataURL to image for posting to Facebook

I have a canvas that I am saving to a DataURL, and I could right click it and save it as an image to my files, but how do I convert it to an image either on the client-side or server-side(Rails) for ...
0
votes
2answers
19 views

Saving canvas with 300dpi (imagemagick) and todataurl / base64

I have a problem saving my canvas. I think that is because my canvas is too large. I have asked for help here: Elements on the canvas disappear w/ jsfiddle canvas.toDataURL() for large canvas … but ...
-2
votes
1answer
32 views

Kineticjs Stage Cordinates after scaling

I'm using KineticJS to allow users to free hand drawing shapes on canvas and I am successfully able to zoom in/out canvas stage by setting scale. Challenge: Am not getting the updated scaled ...
0
votes
1answer
19 views

drag-drop, resize images and then drawing features in 1 canvas

I am working on an application where the user comes and sees a blank area(div or canvas or whatever, lets call it mycanvas hereafter). Now he drags some images from outside(a div) and drops them on ...
0
votes
1answer
33 views

Why does the color of my lines gradually change in html 5 canvas?

I was wondering why the vertical lines(strokes) are slowing changing color almost like they are being gradiented towards the end Below is an example of what i mean, this is using HTML5 Canvas ...
0
votes
1answer
23 views

ArcTo() not drawing arc

I've got the following HTML file: <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Canvas Hello World</title> <link ...
1
vote
2answers
39 views

Take a screenshot of whole screen using html5/javascript?

I am looking to take a full screenshot through a webpage, outside of the browser window. Basically, I am trying to build a help tool for both web-based apps and offline programs, and as a part of this ...
0
votes
1answer
16 views

How to create a fading mask in html5 canvas for a white background

I got a circular canvas animation and I want to fade out the edges. The solution I ended up with was to create a larger canvas to put in front with a radial gradient from transparent to whatever color ...
0
votes
1answer
36 views

Syncrhonous scrolling of 2 separate canvases on a single page

I have 2 canvases:- <canvas id="myCanvas" width="915" height="650" style="border: 2px double #000000;"></canvas> <canvas id="pharmacy" width="915" height ="320" style ="border:2px ...
0
votes
0answers
35 views

How to perform uploading file to a canvas using AngularJS IE?

I'am trying to debug this code on IE. This code use AngularJS with a file input. It works fine on Chrome. $scope.file_changed = function(element) { var files = element.files; // FileList object ...
1
vote
2answers
58 views

HTML5 Canvas performance very poor using rect()

I'm writing a game, which displays the score at the top of the screen in the following fashion: canvasContext.fillStyle = "#FCEB77"; canvasContext.fillText(' Score: ' + Math.floor(score) + ' ...
1
vote
1answer
28 views

Liferay theme - html5

I am developing a portlet for Liferay (v6.0.5, runs on JBoss). I would like to use HTML5 (canvas to be more specific) in this portlet. How can I find, if the theme I am currently using on the portal ...
0
votes
1answer
30 views

Animated/ responsive/ live icons on rollover. Example given

I'm trying to find out how to recreate the effects of the icons here: https://designmodo.com/flat/ especially the retina display icon with the moveable lens. However, after 2 days of trying to look ...
0
votes
1answer
35 views

Canvas to Image in javascript?

I'm trying to transform a canvas on html image. The canvas is display without any problem, in $('#image1') there are some data, but it's not display ? What i have forget ? Here is a jsfidle with ...
0
votes
1answer
28 views

Create Canvas from image on javascript

I'm trying to learn manipulate image and canvas in javascript. I'm wondering why we can not do : var urlimg='http://images.aviary.com/imagesv5/feather_default.jpg'; var can = ...
0
votes
1answer
19 views

Pulling variables/data out of a processing sketch in a canvas to javascript so I can trigger page functions with those variables

I am making an simple app where the user logs in and is then sent to a screen where they must tap a button as fast as they can for 30 seconds. I am using Processing to create the sketch with the ...
0
votes
1answer
28 views

Select options based on percentage

I need an efficient method to select options based on percentages. For example, assume we have four colors: black, blue, red and white. Now, I'm going to create an array filled with colors, except, ...
1
vote
2answers
59 views

How can I get this HTML5 Canvas paint application to work for both touch and mouse events?

Here is the source code of what I'm trying to do: http://jsfiddle.net/3nGtM/ Javascript: window.addEventListener('load', function () { // get the canvas element and its context var ...
0
votes
3answers
39 views

Add onclick and onmouseover to canvas element

I want to add an onclick, onmouseover and an onmouseout events to individual shapes in a canvas element. I have tried doing this with SVG in different ways and found no single method will work in ...
0
votes
1answer
26 views

Fabricjs - how to clip only selected object?

I have tried old and latest 1.1.13 version of fabricjs and none of them can apply clipTo function on selected object only. If there is only one object and need to clip it, it's ok but when there are ...
0
votes
1answer
30 views

HTML5 Canvas API

Below script is not drawing the complete image on canvas. Trying to draw 400 * 346 px image from the sprite.Tested with chrome, safari, mozilla <html> <head> </head> <body> ...
0
votes
1answer
30 views

restoring a saved canvas always fails and errors

I have a canvas paint app I'm working on that uses mouse clicks to draw. Simple enough. There's a listener on mouseup that saves the current drawing vis-a-vis getImageData and sets a session cookie ...
1
vote
0answers
21 views

attach drop target to dragged object

In Kineticjs is it possible to attach a droptarget to the element being dragged. I need to highlight the target when drop happens. The code i am using is circle.on("dragstart", function(e) { ...
0
votes
0answers
22 views

collision detection + mouse events in kineticjs

I am trying to do a drag & drop on a number of rectangle objects that are draggable. There is another set of rectangle objects acting as container for dropping objects - I have added them to a ...
0
votes
3answers
46 views

passing a variable (id) from html to external js file with functions

I'm novel with javascript, and I trying to develop a webpage with dynamics graphs using for that canvas, html 5 and javascript. I wouldn't like to mix html "code" with javascript code, so I decided to ...
1
vote
0answers
61 views

HTML5 Canvas game development without using images

I am working on a rpg game development. My concern is- I don't want to use any image. I want to draw everything (seriously, everything..) using canvas drawing methods (lineto, bezierCurveTo, ...
-7
votes
0answers
26 views

Refining my HTML5 Project [closed]

Its hard to state what I need in the title since its multiple things, I created a well known game where you pick up an item and an object get shooten at you in random direction then keeps bouncing ...
0
votes
2answers
40 views

difference between two images start positions in html5 canvas

var c=document.getElementById("myCanvas"); var ctx=c.getContext("2d"); ctx.strokeRect(50,50,200,200); ctx.translate(100,100); ctx.scale(0.751,0.751); ctx.translate(-100,-100); ...
0
votes
0answers
32 views

Google Map APi 3 marker generation using html5 canvas

I am working with html and canvas for build marker for my maps and rotate it according with some orientation, what I have noticed is that my image loading is later than my response, I mean when I load ...
0
votes
2answers
45 views

Getting pixel data from Kinetic JS Image

I am using Kinetic JS to display an image, and I would like to implement a magnify function. So basically I would like to copy the area of the image which the mouse pointer is hovering over, scale ...
0
votes
1answer
36 views

How to convert retina canvas to non-retina display

Learning objective c programming and struck with this question: is it possible to convert a retina display canvas to non-retina display ? How to make canvas both retina and non-retina display ...
-5
votes
2answers
68 views

Undo button Html5 JavaScript

I want to create an undo button for my web application using javascript. Can someone please help. Basically i got an web app which has got features such as Drawing, Image effect, and Drag and Drop. ...
1
vote
1answer
27 views

How to add subscript and superscript text in kinetic text

I am using kinetic.js to create a text object in a canvas. Now I need to create a text object with subscript and superscript e.g: H2O (here '2' will be subscript) and I am not able to create a ...
0
votes
1answer
21 views

Bitmap Constructor URL VS image, how to decide?

I am wondering about performance in such a scenario where there could be 100 Bitmap element on stage. If I constructed those bitmaps using URL, would each bitmap tries to download the image file from ...
0
votes
2answers
32 views

Setting correct this-value in requestAnimationFrame

I have an app-object constructer that looks like this: var app = function(loadedsettings) { return { init: function() { this.loop(); }, loop: ...
0
votes
0answers
14 views

Design catalog for transparant PNG Canvas Layers with Jquery and HTML5

I need to start a project that will include a catalog of drawing files. Dragged and dropped onto a Canvas. I have decided against SVG due to the customers unwillingness to allow his vector files into ...
2
votes
1answer
44 views

KineticJS - Multiple transforms applied serially

I'm using KineticJS to allow users to manipulate their images -- crop, rotate, scale, flip, etc. When I apply any transform to the image, it works great. But when I apply a second transform it acts ...
1
vote
1answer
38 views

Drawing shape on canvas with relative size

I have this code that draws a circle. How do I change this code so that the red circle is 100% of the browser window? I want the red circle to resize with the browser window. <canvas ...
0
votes
2answers
47 views

CSS adding stretching edges next to banner

Im a beginner sitebuilder :) I want to do the following: there is a 400x200 sized banner image, this must be put centered. As the width is bigger, there must be 2 edges left and right, preferably ...
0
votes
1answer
38 views

how to use the spinning.gif image on a web application

I have a canvas html5 web app:- I am trying to add the 'spinning.gif' image while the canvas is loaded via sql queries. <div id="someHiddenDiv" style="display:none;"><img ...
0
votes
2answers
68 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
40 views

set offset/position of polygon to rotate

I'm trying to perform a crop of a background image with different shapes. The objective is to move/rotate around the polygons, crop the background with the shape of the polygon, somehow plot the ...
0
votes
1answer
32 views

DataURL not returning value

I have created a function that stores DataURI of image in local storage. Data is stored perfectly in the local storage but if I try to get value from function i.e. return statement, then I get ...
0
votes
1answer
36 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
2answers
56 views

Animation runs slower and doesn't replay without page reload in chrome

Hi I'm following a tutorial in using easelJS for writing browser based games. And the tutorial is going fine but I've noticed some problems whilst playing the animations on chrome. Chrome runs the ...
0
votes
0answers
31 views

webgl shadow mapping gl.DEPTH_COMPONENT

Hey im trying to implement shadow mapping in webgl using this example: tutorial What im trying to do is initialize the depth texture and framebuffer. draw a scene to that framebuffer with a simple ...
1
vote
1answer
58 views

how to add a mask AND a background to canvas element

I am trying to make an image masked by a png with a background image. It works fine when I put the masked image only but if I add a background image the front image is not masked anymore ...

1 2 3 4 5 46