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
vote
0answers
67 views

ImageMapster text overlay

How to achieve text overlay in ImageMapster? ImageMapster seems to be a very popular plugin and I am doing research in order to decide whether to use it in my project. In the application that I am ...
1
vote
0answers
159 views

canvas game low performance on ipad good on iphone

(french guy scuse my english ;) ) I have finished a javascript space shoot game using a html5 full canvas after 6 month of development on chrome firefox safari and recently on mobile device using ...
1
vote
0answers
50 views

Draw Smaller moveable Images on big image loaed on Kinectjs canvas

I loaded a big image on to a kinectjs canvas. Code below: <div id ="imgarea" ></div> var imageToCanvas = function(){ var stages = new Kinetic.Stage({ container: "imgarea", ...
1
vote
0answers
261 views

Eraser with PorterDuff.Mode.CLEAR always draws a black line, where i want to delete

Can i make it draw the path, where I move my finger to delete with a transparent line, or not draw at all? This is how i instantiate my eraser: OnClickListener eraseListener = new OnClickListener() ...
1
vote
0answers
75 views

Manipulate an UIElementcollection in canvas

I'm drawing on a canvas panel some shapes that i have in a xml file. But when i'm doing it, i'm drawing line by line. I would like to know if it is possible to use an UIElementCollection instead. I ...
1
vote
0answers
29 views

How does Chrome's glyph cache work?

Thanks to the new Chrome experimental profiler, I'm getting some more information about a Canvas2D app I'm developing. The glyph cache memory usage is massive, as you can see below : I suspect that ...
1
vote
0answers
62 views

Canvas is not maximize when window maximized

There is border out side canvas Tag, Now I want to maximize the size of canvas according to window maximized <ScrollViewer x:Name="scrollViewer" VerticalScrollBarVisibility="Auto" ...
1
vote
0answers
33 views

Translate to image in jCanvascript

I apply jcanvaScript (JavaScript library) on the canvas element there are some images how it is possible to trade places images (after a click a mouse for example)? function start(){ // Add ...
1
vote
0answers
81 views

Smooth rotation issue with javascript

I have searched all over for a solution to my problem on smooth rotation. I can get it 99% working however there is one small issue that keeps messing with me. The rotations works fine except when ...
1
vote
0answers
100 views

Canvas 'tainted' after drawing SVG

Similar questions have been asked, and the REASON for the problem is well understood, what I'm asking for is alternatives or work-arounds: What I'd like to do is get a data-URL out of a canvas that ...
1
vote
0answers
90 views

SVG. Get paths from text

Is it possible to convert SVG text like: <g transform="translate(185 185)"> <text font-family="'Wednesday'" font-size="40" font-weight="100" style="stroke: none; ...
1
vote
0answers
180 views

canvas.toDataURL(“image/jpeg”) creates black area at the end of the image

I'm using qr.js (http://neocotic.com/qr.js) to create QRCodes. I want to get my users the ability to download these QRCodes, therefore I need to create an image from the canvas-element, using the ...
1
vote
0answers
174 views

FabricJS - Canvas won't re-render after object:hover event

I have used 'piggyback' to be able to catch object:hover events mentioned here: https://github.com/kangax/fabric.js/wiki/Working-with-events Assume standard setup and these events: ...
1
vote
0answers
68 views

Math formula for drawing webkit-like rounded borders

In canvas i want to draw rounded corners in the same way as in webkit-base (google chrome) browsers. For example in css, I could have defined div like that: div { background-color: red; width: ...
1
vote
0answers
128 views

How can I make use of the focus point in android's ScaleGestureDetector to zoom just like android browser?

I have a canvas that I am using a ScaleGestureDetector to zoom in my android app. Here is the code I have so far: //SCALING -------------------------------------------------- //get ...
1
vote
0answers
207 views

HTML5 Canvas Soft Brush

What are the different methods of creating a "soft brush" effect when drawing on an HTML5 canvas? Speed and efficiency is important so if anyone has any benchmarks on the different methods, that would ...
1
vote
0answers
46 views

Canvas beeing black when doing events

I have tried using jCanvas to make seats on my avatar system. Previously in the process i do draw an image (the background for the canvas). The fields should be placed over the canvas, it does when i ...
1
vote
0answers
46 views

Layering HTML elements on each other

Alright, so, I need help on how to put HTML elements (specifically <canvas> and <div>) in a certain order and place, so, even, if, say, canvas 2's width or height get changed, it still ...
1
vote
0answers
138 views

Draw with canvas Android

For now I want the canvas to just draw a color. public class AndroidTentaTestActivity extends Activity { private Bitmap bm; private Canvas c; public void onCreate(Bundle ...
1
vote
0answers
190 views

Transformation Matrix in Android Canvas?

This question is following up my previous question: Hide a face of a 3D shape behind another,Android canvas? I have a canvas and I have to get the normal vector of a face after rotating it via a ...
1
vote
0answers
69 views

Smooth canvas sketching without clearing (redraw)

I'm trying to find a way to smooth out the points for sketching to get a cleaner result. I've found this example, and the result looks quite good I've found some ways that use cubic curves to smooth ...
1
vote
0answers
121 views

Alternatives to large horizontally scrolling views in Android

I am writing a DAW-style app and need to implement the side-scrolling timeline common in such programs. In other words it should appear to the user as though they are scrolling through a very large ...
1
vote
0answers
135 views

iPad Ibooks Javascript Canvas DrawImage does not work

I have a below script, its working in my windows browser. but this code does not work in Epub ebook (in my iPad iBooks) <canvas id="e" width="177" height="113"></canvas> <script> ...
1
vote
0answers
193 views

Polygon not is not filling in android mapview

I am trying to draw a filled polygon on a map view in my app. No matter what I have tried it will not draw filled in. I can get the strokes to show up but I can not get it to fill. Below is the draw ...
1
vote
0answers
54 views

WP7 ScrollViewer content clipped

I add Canvas in ScrollViewer and Set Canvas Clip as below. But the content is clipped. I am confused. Please help me. public MainPage() { InitializeComponent(); for (int i = ...
1
vote
0answers
97 views

Leak with canvas.getImageData?

There's a similar question already, but there the issue is resolved as not being due to getImageData itself. This is definitely an issue with getImageData, or else I'm badly misunderstanding ...
1
vote
0answers
178 views

KineticJS - Text metrics - how can I get position of text baseline?

I'm using KineticJS to position text using draggable Kinetic.text and then export to PDF based on the height and width of the text on screen. The pdf exporter I'm using (fpdf) measures the text from ...
1
vote
0answers
63 views

Box2dWeb missing ApplyLinearImpuse() and ApplyAngularImpulse() methods?

I have been trying to get to grips with HTML5 game writing coming from an XNA / Farseer background. It seems that box2dweb is missing ApplyLinearImpuse() and ApplyAngularImpulse() methods. I have ...
1
vote
0answers
185 views

How to accurately zoom d3 maps which have already been translated

I have a map which has been translated to make it fit on the canvas properly. I'm trying to implement a way to zoom it and it does work, but it moves away from center when you zoom in, rather than ...
1
vote
0answers
43 views

Optimizing Canvas animation in Opera browser

I have tried to use : http://www.codediesel.com/javascript/drawing-trees-in-canvas/ for some testing and found that on Opera12 browser, lot of CPU is consumed. Please let me know if there is any ...
1
vote
0answers
369 views

android how to rotate canvas rect

i create a rectangle in a specific size, and now i want rotate it to 45 degree, i used canvas.rotate, matrix, but not working. how is the proper way to rotate canvas in android? and i'm curios about ...
1
vote
0answers
257 views

iPhone IOS 6.0.1 'Take Photo' image corrupted in Canvas HTML5

I currently have a canvas html5 element setup to receive an uploaded image, resize it, and pass its data uri to a form value which is then submitted to the server. This works well on computers but has ...
1
vote
0answers
203 views

Trying to save HTML5 canvas as image to server using the Yii framework

I have been trying to figure this out for about a week and used several solutions found online. I have not been able to apply any of them to yii. Here's the click funtion that has no problem firing ...
1
vote
0answers
288 views

NODEJS Canvas to base64 png stream

Imagine that i have a client that only can read base64 images and i want to show that images like a realtime movie (as less latency as possible). This images are created on server side using nodejs ...
1
vote
0answers
214 views

FlashCanvas drawImage NotWorking

I'm on Windows7 IE9 running in IE8. This works in IE9 only because I can use canvas however in IE8 it's suppose to fall back to flash canvas. Here is my source ...
1
vote
0answers
54 views

Not been able to get the exact coordinates of canvas when it is put in the draggable div

Please check the fiddle. i got this plugin through answers. It works fine when the position of the canvas is fixed. But when i include the canvas in a draggable div and move the div the coordinates ...
1
vote
0answers
93 views

FB.login not authtorized

I am designing a Facebook app on canvas page. And I called the Facebook_login function when clicking on a button. Wnen I visit the app and click on the button, it always works and shows "connected". ...
1
vote
0answers
190 views

WPF MVVM Canvas UIElement has strange Binding if the ViewModels have identical position properties

A view model binds to the wrong UIElement if it has the same properties of another view model in the collection. I have a Canvas control that represents a matrix and this canvas is bound to a ...
1
vote
0answers
400 views

canvas cross domain pixel error

I'm having this issue with the html5 canvas. I'm using EaselJS to load in images. http://www.createjs.com/Docs/EaselJS/Bitmap.html But when I add any kind of mouse events (onClick, onMouseOver, ...
1
vote
0answers
104 views

Get original image region pixel coordinates using wpf canvas

I did application with WPF Image control, and I have image control in Canvas. Also I did draw rectangle on canvas with the help of "Using a rectangle to create a search region on an image" blogs. ...
1
vote
0answers
76 views

Strange behavior in chrome (using a gameloop) with canvas

I have the following code: var gameStateRender = function (game) { var t = new Date(); /* time passed since last frame */ game.timePassed = t.getTime() - game.timeFrameStart; /* ...
1
vote
0answers
181 views

cannot send client side Image() object (created with canvas and jquery) to .net server

As the title says, I'm trying to send an image that only exists client side back to the .net server. I am using a few very simple functions to accomplish this goal. I have no trouble creating and ...
1
vote
0answers
204 views

Canvas, negative coordinates: Is it bad to draw paths that start off canvas, and continue on?

I only want to show a portion of a shape drawn on a canvas. My line is essentially this, and it works fine: ctx.fillRect( xPosition, rectHeight - offsetV , rectWidth, rectHeight); The second ...
1
vote
0answers
556 views

Coderwall blurred background effect with canvas

How is coderwall.com doing this background effect, where they take a small image, blur it, and size it up to 100% of the viewport. Here is an example: https://coderwall.com/p/on5ojq I tried: ...
1
vote
0answers
84 views

HTML5: “ImageData is not defined” error in Firefox for Ubuntu when trying to change prototype

I'm doing a simple physics simulation (like falling sand) with a <canvas> element which involves per-pixel manipulation; I'm using JavaScript. I wanted to add a method to the ImageData class ...
1
vote
0answers
40 views

Clickable area on a path

What methods is to make the area click on the figure? Image-map does not fit, because should consider resizing images. For exemple, i have html construction: <a href="#"> <img ...
1
vote
0answers
1k views

HTML5 Canvas Drag and Drop with snap-to-grid and revert support

I have a html5 canvas with 10x10 grid. User can drag and drop tetrix-like object inside that grid. Objects must be snapped to the grid (on drag) and if it is dropped on other objects, it must revert ...
1
vote
0answers
137 views

Kinetic, change stage/container or open new stage/container/layer

I'm new in kinetic with canvas, I cannot differ stage, container,layer yet and I want to make a game that have a map. On that map you will see some countries. When i click on one country, it will ...
1
vote
0answers
223 views

Collision detection for tile based game. - Collision when there are more than one tile

I've been searching for answer to this many, many times, but i didn't found anything. I am trying to make collision detection in my tile based game. The tile is 32px width and height, and this is how ...
1
vote
0answers
203 views

Scrolling surface background in sprite.js(canvas)

I'm making a tile-based browser game using Sprite.js to interact with canvas. https://github.com/batiste/sprite.js/ Here is what I got now(PC version has a larger visible area): ...

1 2 3 4 5 44