0
votes
1answer
54 views

How to Draw a Circle with Centered Fadeing Out Gradients with HTML5 Canvas?

How can I draw a circle with fadeing out gradients? I mean something like this: http://i.imgur.com/ZJBKe6z.png , getting darker and darker...
-2
votes
5answers
94 views

Javascript: Fill in a grid, one section per second

I'm having trouble even getting started with this (pointers to tutorials, etc welcomed) I'm looking to have a 10x10 grid (say 100px x 100px) that fills in one section every second until full (100 ...
0
votes
1answer
75 views

I cannot draw the image in chrome correctly

Here simple code1 which work fine Demo jsFiddle ,I want the same result in code2 Here the code2 Demo jsfiddle which have two problems. The scale is not correct to 1400x700 pix I can only successes ...
0
votes
2answers
86 views

Random color for circle

I'm using svg to draw a circle and I would like to make the stroke color and fill color the same, but still random. Is there some way to randomize the color?
1
vote
2answers
152 views

clearRect function doesn't clear the canvas

I'm using this javaScript on the body onmousemove function: function lineDraw() { //Get the context and the canvas: var canvas=document.getElementById("myCanvas"); var ...
0
votes
1answer
56 views

Javascript Library for Mobile Touch Drawing of Closed Poly Shapes

I want to draw shapes on mobile screens via touch that define a closed area polygon. I would also like to interact with those polygons by say subtracting or adding area to a polygon based on the area ...
0
votes
1answer
99 views

Rotation html5 does'not work

If i rotate image with this code, all works: draw: function(canvas, x, y,angle) { canvas.save(); canvas.translate(x, y); canvas.rotate(angle * Math.PI/180); canvas.drawImage(image, -width/2, ...
1
vote
1answer
151 views

Simple cross browser draw javascript library

We are building a web app library which need draw some polyline/polygon/circle/rectange. Also we want these vectors can be edited. So I wonder if there is a cross browser draw library can be ...
2
votes
2answers
597 views

Javascript draw canvas memory leak

This script is endlessly taking memory in all the browsers. I can't see why! var canvas = document.getElementById("canvas"); var ctx = canvas.getContext("2d"); var particles = [], amount = 5; var x ...
1
vote
1answer
245 views

Drawing straight lines in JavaScript

I'm just trying to draw a line with JavaScript. I would like it to be like this: http://deepliquid.com/projects/blog/arrows2.html My version: http://jsfiddle.net/shawn31313/qsWML/5/show Doesn't ...
3
votes
2answers
1k views

Drawing at cursor position on canvas with JavaScript

I am trying to draw over a canvas by clicking and dragging the mouse. My problem is that, apart from the fact that the line has a very poor quality (I want a more pronounced border) it only respects ...
1
vote
0answers
61 views

How can i draw smooth text on html canvas? [duplicate]

Possible Duplicate: Poor anti-aliasing of text drawn on Canvas i already have drawn text on html canvas. but the text's side is not smooth. I want to make them smooth like photoshop. Please ...
2
votes
2answers
1k views

Does Google Maps provide the ability to draw multiple polygons on a map?

Using the Google Maps JavaScript v3 API, is it possible to draw multiple separate polygons on the same map? And include a message box that appears after drawing each shape with an alert: 'Click rest ...
-3
votes
2answers
234 views

I need help clearing my user canvas drawing ASAP

I have this html5 drawing app that draws just fine on the canvas element. My problem is, I have an img of an eraser and I want the user to be able to click it and it will erase the canvas. Extra ...
3
votes
1answer
2k views

javascript + html5 canvas: drawing instead of dragging/scrolling on mobile devices?

I'm using a html5 canvas + some javascript (onmousedown/move/up) to create simple draw pad on a webpage. Works OK in Opera, Firefox, Chrome, etc (tried on desktop PCs). But if I visit this page with ...
2
votes
3answers
946 views

HTML5 drawing pictures on a canvas with a for loop?

So, I want to create a minecraft website theme using HTML5. I am a bit shaky in HTML5/Javascript(haven't used it in a while), and I need some help. I am trying to calculate a number of 16x16px tiles ...
2
votes
2answers
294 views

Draw outline of combined rectangles in canvas

Is there a good algorithmic way to combine multiple squares (each has four x/y points) to draw an outline of the joined figured in canvas? The figures I would want to make sure work are as follows: ...
1
vote
1answer
2k views

fabric.js - Free draw a rectangle

I have the following which doesnt work correctly: var canvas = new fabric.Canvas('canvas'); canvas.observe('mouse:down', function(e) { mousedown(e); }); canvas.observe('mouse:move', function(e) { ...
-1
votes
2answers
544 views

How can I draw an image on a canvas element through jquery? Or do I have to use javascript?

I need to know how I can draw an image on a canvas element, through JQuery. I really wanted to use JQuery because it's much simpler and I know more about it that pure javascript, although I will use ...
3
votes
2answers
2k views

Formating legend and axis in Google Charts

I'm new with Google Charts and I am not able to obtain a fine result with the texts surrounding the graph. This is how my chart looks: As you can see, it does cut both Horizontal-Axis and Legends, ...
0
votes
5answers
517 views

A simple, short code for movement

I'm trying to get further with js, so I've been looking for a simple and as short script as a possiblity to move a letter, dot, (whatever) to specific coordinates or just to draw it at those ...
3
votes
1answer
610 views

Offset when drawing on canvas

Have a simple drawing application. The problem is in the coordinates (redraw function): they must be mouse, but are near 2x mouse. What's the problem in the code? <html> <head> ...
0
votes
2answers
84 views

PHP and JS in order to manage and draw graphs

I have a project to draw relationships between different elements determined on a sheet. When the user has finished making the plan, it can export it to a txt file that contains the links. A bit like ...
3
votes
1answer
3k views

Drawing different colored shapes in a path (HTML5 Canvas / Javascript)

I'm trying to draw multiple circle arcs filled with different colors //-------------- draw ctx.beginPath(); ctx.fillStyle = "black"; ctx.arc(30, 30, 20, 0, Math.PI*2, ...
0
votes
2answers
93 views

How to create a javascript in HTML that generates/returns an image from an existing image?

I am developing a webpage that uses a google map. I customized the icon/marker of the google map if it points to a certain specific location. The icon/marker was customized successfully and pointed to ...
0
votes
1answer
359 views

function to draw (canvas) multiple items from an array

I have a seat function which takes a number of values, 3 of which are used to draw circles on the canvas. each circle is a var named after a person and containing the values from the seat function. ...
1
vote
2answers
948 views

html5 canvas draw circle variables with extra data

So I am basically trying to create a seating chart that will mark spots with circles and then onMouseover displays a tooltip with the person’s first name, last name, and maybe some other information. ...
2
votes
2answers
2k views

Lasso tool in javascript

Hay, I'm writing a simple web based image maker, and would like to know if anyone has any idea's how to implement a lasso tool. I'd like to be able to save all the points so that i can easily send ...
0
votes
1answer
545 views

How to rotate an image that will be drawn on to canvas?

so having a canvas and canvasContext I want to draw an image onto that canvas multiple times So I have code like: var img = new Image(); img.src = 'http://superior0.narod.ru/5050.png'; function ...
1
vote
1answer
288 views

force html canvas to draw only on a certain area for some drawings

My objective is this : creating a rolling text that does not cross borders of a rectangle inside the canvas. Some text should appear partially. Yet i have not found a way to obtain this. The only ...
3
votes
1answer
1k views

Let users draw a line (arrow) on a div/img

Using the jQuery plugin: imgareaselect (http://odyniec.net/projects/imgareaselect/), I let users select areas of an image to add comments (just like flickr). I'm aiming to let users draw arrows ...
6
votes
7answers
17k views

Javascript draw dynamic line

I'm looking for Javascript code for letting the user draw a line (on an image). Just as the line tool in Photoshop (for example): The user clicks on the image, drags the mouse (while the line ...
4
votes
7answers
8k views

Drawing on top of an image in Javascript

I want to let the user draw on an image in a browser. In other words, I need both bitmapped graphics and drawing capabilities, whether vector or bitmapped. Canvas looks good, but is not supported by ...