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.

learn more… | top users | synonyms

-1
votes
0answers
8 views

html5 canvas draw line using slider

I am trying to move a line with the slider. So as I am move slider I should be able to draw a line and also I am trying for curve also. As I move slider I should be able to draw a curve on the ...
0
votes
0answers
10 views

PropertyPath Issue - Cannot resolve all property references in property path(Canvas.SetLeft)

I am trying to move a rectangle. Is there some other property to be used. Please help me out. Thank You! Rectangle myRectangle = new Rectangle(); Color myColor = Color.FromArgb(255, 255, 0, 0); ...
1
vote
1answer
18 views

drawing on canvas after jquery ready

I've just started developing some small games using the HTML5 canvas tag and javascript. But as I started I found that when I call the jquery ready handler like this: <script>$(function(){ ...
0
votes
2answers
20 views

How to restore a canvas to status saved in another function?

I want to save the status of a canvas in a function draw1(), and restore it in another function draw2(). So I wrote following code. But it doesn't work. <canvas id="canvas" style="width:500px; ...
-1
votes
1answer
13 views

Canvas Fireworks

I'm trying to customise this script so it initiates after the mouse has been clicked. You can view the code here, it's a long one so it will be easier for you to see it here ...
0
votes
1answer
25 views

Looping a grid in canvas HTML5 with “gaps” between squares?

I want to create 5x5 grid with 40x40px squares and 4px gaps between them, here's a picture: http://i.stack.imgur.com/hu96a.png So I intended to do something like this: $(document).ready(function(){ ...
0
votes
1answer
33 views

Dragging a shape in kinetic js is also moving an unrelated shape

I've got a line that is drawn from one point to another. I add circles to the ends of the line that allows the line to be moved. However, when I move the circle, and the line updates, another line is ...
0
votes
0answers
30 views

HTML canvas responds to click+drag by creating an expanding-box selector

I've been learning a little bit about HTML Canvas and I've run into a behavior that seems to be cross-browser (Chrome, Firefox, Safari) - but seems unique to certain setups. The issue is that in ...
-1
votes
1answer
31 views

canvas rename? - stay on the page

I am not able to turn that toDataURL a link, type /img.png ...
0
votes
1answer
25 views

Stop canvas flicker on re-render

I have written a jQuery plugin that will render four polygons onto a canvas and fill them with an image. When you mouse over a polygon it is moved to a separate top layer and re-rendered so it ...
0
votes
2answers
20 views

Using SKIA library instead of Android Canvas

While I am researching about 2D rendering pipeline of android, I came to know a graphic library SKIA written in C++. But I am not sure it can be used instead of android Canvas. Can it be used as a ...
0
votes
0answers
17 views

Rendering local files with HTML5 in OpenLayers

Title says it all,there are some examples of HTML5's FileSystem,FileAccess features which user can add a file without sending to server side. I'm developing a mapping application with OpenLayers,I ...
-3
votes
0answers
40 views

Drawing graphic canvas line with minus values in javascript [closed]

I need your help please. I want to draw a canvas line graphic. The values > 0 display above line 0 and the values < 0 display under line 0. Please check my code. The line No.1 (Col1) has 2 values ...
0
votes
1answer
24 views

convert adobe illustrator (or SVG) files into KineticJS Paths

I am using KineticJS to build a scene where I want to add some vector drawings to the canvas, and I have provided with lots of Adobe Illustrator files which contain shapes to add to the scene. How ...
0
votes
1answer
25 views

Re-drawing the canvas or moving it?

I need to draw a line that moves from left to right over the screen. Currently I'm just calling .clearRect() everytime, and draw it again, 1 pixel further. However, another possibility would be to ...
0
votes
1answer
30 views

HTML5 Canvas distort transforms

I definitely need these kind of Photoshop transformations for my Canvas. I found this plugin, but the quality of transformed image is really poor https://github.com/migurski/canvas-warp Thanks for ...
0
votes
2answers
35 views

HTML5 Canvas - unwanted image URL exposing

HTML5 Canvas is great, but I don't feel good about exposing images URLs. image.src = "image.png"; I don't want visitors see that URL (which can be found when visitor displays site source) a let him ...
-1
votes
2answers
38 views

Does HTML/javascript client-side image compression seem like a reasonable, fool-proof plan?

I have a plan to add images to a chat I've created, but the problem is that I have a small amount of bandwidth to use and I don't want to overstay my welcome, so does this form of file compression ...
0
votes
0answers
12 views

Static part of Custom View draw with shapes or draw ready made bitmap

I'm implementing a Custom View. The view is mostly static but reacts to touch gestures by moving text and basic lines. I know that if I draw the background of the widget on the canvas using shapes, ...
0
votes
0answers
10 views

TweenJS - How to use a slider input to control tween position?

I am working on a project that allows a user to view a canvas animation created in a previous process, Underneath the animation (the canvas element) I need a slider to control "scrubbing" of the ...
-2
votes
1answer
32 views

how to get all path regions [closed]

I want to calculate area that covered by red on canvas. Its basically a image editing application. In this application user can draw path on canvas by finger. I need to calculate area that drawn by ...
0
votes
1answer
30 views

Using the global variable POST in PHP to receive a java script variable

Im a high school student and im trying to finish up my final project for my webdesign class. Ive run into a problem with the global array "POST" in PHP. Some background info: I have a HTML 5 canvas ...
0
votes
1answer
22 views

fabric.js: why a border radius of 1px when stroke: true, fill: false

I'm working on a bigger web application which is using a canvas for rending shapes. Now I've got a problem with rendering of unfilled rects (stroke: '#fff', fill: false): they always have a border ...
-1
votes
0answers
18 views

¿Why do I get different coordinates on a resized canvas?

Well, I have a problem with canvas. I use jquery to resize the canvas element and its contents don't lose their original coordinates. When the canvas is running and context is painting I use a jquery ...
0
votes
0answers
40 views

Don't draw correctly canvas in device Android 4.2.2 with Sencha

I'm developing an App with Sencha Touch 2. In one part of the App, I draw using canvas. It's works correct on my iPad 4 with iOs 6.1, and It's works correct on other device with Android 2.3.3. But, ...
0
votes
0answers
24 views

Trying to animate a drawn image on Canvas

window.requestAnimFrame = (function (callback) { return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || ...
-1
votes
0answers
31 views

/not duplicate - help!/ Draw Path in Canvas as an Animation [duplicate]

I would like to draw a Path as an animation on Canvas (so the user can see the drawing). I was reading a lot of articles about it but I didn't find answer that would satisfy me (easy answer explaining ...
0
votes
1answer
21 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 ...
-1
votes
2answers
42 views

Dynamically create a sphere using the HTML5 Canvas [closed]

When I click on particles on a canvas, then I need to create a sphere dynamically with a unique number. Demo URL: http://sembiotics.com/
1
vote
1answer
52 views

Understanding HTML5 Canvas Element

I am read tons of documentation about save/restore canvas states, but still confused with next example. function draw() { var ctx = document.getElementById('canvas').getContext('2d'); // ...
0
votes
0answers
17 views
+50

Prevent ordering in gRaphael pie chart

I'm trying to draw two pie charts using gRaphael, like so: var r = new Raphael(0, 0, '100%', '100%'); r.piechart(100,120,80,[60,40]); r.piechart(300,120,80,[40,60]); This produces the following ...
0
votes
1answer
38 views

Translating threejs animation from WebGL to Canvas

I am trying to make this threejs example (currently using WebGLRenderer) work with the CanvasRenderer: http://threejs.org/examples/webgl_shadowmap.html Here is my result: ...
0
votes
1answer
26 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 ...
0
votes
1answer
11 views

javascript ImageData typed array read whole pixel?

So there is are a lot of examples on how to write an entire pixel from a Uint32Array view of the ImageData object. But is it possible to read an entire pixel without incrementing the counter 4 times? ...
-4
votes
1answer
48 views

AdMob Ads on Android Canvas GamePanel [closed]

I want to place an admob adbanner on a canvas surfaceview. (A Class that extends SurfaceView and implements SurfaceView.Callback). Any solutions to place a view on the top? For example a basic button. ...
0
votes
0answers
21 views

How to overcome security exception when loading image?

I am using the following code to load an image from Amazon S3 storage into Android WebView: var img = new Image(); img.crossOrigin = 'Anonymous'; img.src = <my.s3.amazon/image.jpg>; img.onload ...
0
votes
1answer
21 views

Checking width of string in html canvas

Hello all I've tried relentlessly to write a script that will check the width of a string and if it is greater than a certain amount, lower the font size and draw it again. Except this is not working. ...
1
vote
0answers
20 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
31 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 ...
1
vote
1answer
73 views

Convert a string to a javascript code

I have the folowing string variable returned from a textarea : jtext = $('#putJS').val(); The result of this string is the following: ctx.beginPath(); ctx.moveTo(172 + xoff, 29 + yoff); ...
0
votes
0answers
23 views

Box2D collision causes huge FPS drop

I'm playing with Box2Dweb and HTML5 canvas, and are experiencing some odd behaviour. I have one dynamic body and one static body, in the world. I can control the dynamic one with my keyboard. But as ...
1
vote
1answer
25 views

Grainy Markers with rotation in GoogleMaps

i've create a Maps with any images using this code: icon_pin = BitmapFactory.decodeResource(getApplicationContext().getResources(), R.drawable.arrow); int w = icon_pin.getWidth(); int h = ...
0
votes
1answer
14 views

How I can change canvas to svg?

function BallItemRenderer() { this.canvas = null; this.graphics = this.canvas.getContext("2d"); this.stroke; this.fill; this.cubeDepth = 0; this.cubeAngleRatio = 0; this.draw = function(x, y, ...
0
votes
2answers
31 views

Graphics will not cover entire canvas

What I know: Canvas is displayed properly, due to the yellow. However, graphics will not cover the canvas completely, nor will my law class recognized it past the end of the black area... So what ...
0
votes
1answer
25 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 ...
0
votes
1answer
15 views

when rotate using matrix, i lose position of image

I am using canvas to draw multiple images (120X120) when I rotate 60 degrees, the picture stop being centered. The Image can be anywhere on the screen when rotating, i just want to mantain its center. ...
0
votes
0answers
3 views

Is it possible to upload to Drive using the Save to Drive button from a website canvas?

I developped a javascript application for editting photo. I would like to know if i can use the Save to Drive button for uploading the result image from a canvas to google drive ( without any server). ...
0
votes
1answer
15 views

Python issue editing tkinter canvas items in a 2darray

I'm using a raspberry pi as a communication front end for more complex devices. I'm coding it in python, and including a gui to display the information going through it. My issue involves a grid of ...
0
votes
0answers
14 views

Fabricjs customization methods not working

I'm trying to use fabricjs' customization methods but they don't seem to work. I have this function var canvas = window.__canvas = new fabric.Element('drawing-area'), formEl = ...
0
votes
1answer
18 views

HTML5 Canvas Drag and Drop with snap into position images

http://www.html5canvastutorials.com/labs/html5-canvas-animals-on-the-beach-game-with-kineticjs I am wanting to have this for my HTML5 IOS Application. This requires the widget work offline. When I ...

1 2 3 4 5 167