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.
1
vote
0answers
511 views
How do you set a cookie in a Facebook Tab or Canvas App?
I know that Firefox and Chrome handle this already and using a P3P header for IE will allow setting cookies from the server side. I want to know if there is anyway to set a cookie in the Facebook App ...
1
vote
0answers
468 views
Save canvas with an image as PNG works only in Firefox
I have an canvas on my site where the user can draw and can also add an image. By clicking a Save button I want the canvas to be saved as a PNG image.
Everything works fine in Firefox, but in Chrome ...
1
vote
0answers
119 views
Uncaught Error: INDEX_SIZE_ERR on iPad ONLY
I'm doing some canvas drawing in an application and it all works great in every browser (except the obvious ie7/8) but I've also gotta make it work on the iPad. When I look at my debug console on the ...
1
vote
0answers
428 views
Using SVG path syntax in paper.js?
With the raphael.js library, paths are described using the SVG path syntax, (e.g. M98.36,214.208l2.186-1.093V210.2l-3.378,0.117l1.174,4.137L98.36,214.208z, which provides a very compact way to create ...
1
vote
0answers
529 views
Flot chart - how to fire event on line hover
I have written a plugin for jQuery Flot charts which allows you to dynamically add data points by clicking on the line of a chart, remove them by right clicking and also it allows the dragging of ...
1
vote
0answers
684 views
HTML5 with multiple off screen canvases affect performance?
I am using the following code to pre-render a series of images to use as an animation:
var renderToCanvas = function (width, height, renderFunction) {
var buffer = document.createElement('canvas');
...
1
vote
0answers
102 views
keypress issue in repainting canvas
Develping a Java Me application using Canvas,for first time canvas displaying 5 items in canvas,after some time canvas updates some more time to current canvas.If I press downup key when repainting ...
1
vote
0answers
1k views
Drag and Drop functionality for Canvas in Silverlight 5
i'm working on a project in Silverlight 5, which i have implemented in WPF some months ago. I thought "huh, i will port it in some days..". Wrong :)
To my problem:
I have a listbox and 2-3 ...
1
vote
0answers
118 views
Canvas width makes browser hang up
Below function is used to draw onto a canvas:
function draw(id)
{
var canvas=document.getElementById(id);
if(canvas==null)
return false;
var ...
1
vote
0answers
146 views
How to make a Canvas part of a view in android?
I am working on a code which has the canvas for touch,but the code is in separate one & I want canvas to be part of an xml which comprises of other imageview and others.This is my code
public ...
1
vote
0answers
149 views
How to show view in canvas
I try to create my own view and try to add buttons or TextViews in it.
public class Test extends View{
Button _button;
public Test(Context context) {
super(context);
_button = new ...
1
vote
0answers
287 views
jquery ajax store canvas in folder/on server
I have a question regarding this code snippet:
function upload(){
<!-- grab our drawing data from our myCanvas -->
var myDrawing = document.getElementById("requiem");
<!-- start our ...
1
vote
0answers
318 views
jquery animate with step function not running as it should
I'm trying to make a canvas animation using jquery animate and step callback function.
The problem I'm facing is that the animation is running too fast. If I set the duration to 6 seconds, it runs in ...
1
vote
0answers
203 views
Facebook Canvas App Authentication/Re-Direct Issues
I'm creating a Facebook canvas app, and while the authentication appears to work correctly on the main app view page (loads from http://app.mycanvasurl.com), when I try and add other pages within the ...
1
vote
0answers
691 views
no access to FB.Canvas.scrollTo with fluid height
You can access FB.Canvas.getPageInfo to read the information but they seem to be no way to scroll to a precise position in fluid height since FB.Canvas.scrollTo is only enabled when Canvas Height is ...
1
vote
0answers
756 views
Android system overlay with canvas or GLSurfaceView is extremely slow
I want to implement something non-standard in Android.
I've created transparent system overlay (WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY) on top of everything with GLSurfaceView (then I changed ...
1
vote
0answers
219 views
SVG and Canvas, cross-platform web application
I'm building UI for rich web application which should work equally well on desktops and smartphones. Interface contains some non-rectangular elements and curved lines so it couldn't be made with ...
1
vote
0answers
201 views
How to save image from Canvas to BlobStore in GWT Google App Engine
now I'm stuck in this issue. I'm using Canvas HTML5 to draw an Image to Canvas then I have some customization with that canvas. For the next step, I want to save that Canvas (image) to BlobStore of ...
1
vote
0answers
628 views
Exporting Base64 image data / Canvas to PNG, JPG and PDF in GWT
Here is my first time that I want to raise my issue here. As the title now I have a trouble with exporting a base64 image data to PNG, JPG, and PDF in GWT so I need your help from you. Let I give you ...
1
vote
0answers
184 views
Pixastic doesn't work properly in Safari
I'm using the Pixastic javascript library to make several images on a webpage grayscale. It works in Chrome and Firefox, but not in Safari. Sometimes it makes a few random images grayscale, and ...
1
vote
0answers
291 views
iOS 5 javascript events not bubbling
Anyone else seeing JavaScript event issues in the iOS 5 version of UIWebView?
My app has 2 "layers" that cover the screen. A canvas tag as a background, and an svg shape in the foreground. Both ...
1
vote
0answers
351 views
When canvas element is overlap another div ( Safari 5.1/Mac 10.7.1)
I can't speak English very well.
I develop web-application html5-based.
I've tested safari, chrome, firefox.
It's no problem until safari 5.0.
But after upgrade safari 5.1, it occur this problem only ...
1
vote
0answers
495 views
Kinetic JS constantly redraws after stopAnimation() is called
I'm using Kinetic JS as it provides some useful event handlers for individual items on canvas.
After finishing drawing, I run:
kin.stopAnimation();
To stop animating. And:
...
1
vote
0answers
216 views
For Android's canvas, Is there a way to draw a path of variable width?
I have a path that I want to draw on the canvas, but I want to change the width of different sections depending on some variables. How can I do that?
Also, is it possible to use a bitmap pattern as ...
1
vote
0answers
485 views
Internet Explorer unsupported get request
I got a big problem in IE (only IE, FF etc works great).
I got a canvas page: xyz.de/gewinnspiel.php?register=1.
In IE I get the following error:
FacebookApiException: Unsupported get request. ...
1
vote
0answers
55 views
Drawing a compound image from smaller images
I want to draw an image on canvas constituted from smaller images, and make the new compound image scroll-able both horizontally and vertically as well as enable zoom-in, zoom-out and pan ...
1
vote
0answers
497 views
fb.canvas.seturlhandler function, how to use it?
I just saw the blog post from Facebook team about new features (http://developers.facebook.com/blog/post/555/) it looks very interesting.
I am more interested byt the new fb.canvas.seturlhandler ...
1
vote
0answers
206 views
Crashing Livewallpaper
I'm working on a live wallpaper and I want to have some images randomly placed
on the background of a surfaceview, everything works in the emulator but when i
run it on my the program crashes. I dont ...
1
vote
0answers
181 views
handling changing device orientation during recording and drawing canvas
I have Activity with recording audio (by MediaRecorder class) in thread and in another thread I have drawing on canvas refreshing every 0,1 second (this drawing have a lot of in common with this: ...
1
vote
0answers
82 views
Android - Canvas that (virtually) extends off the end of the phone
I have seen many iPhone and iPad note apps where there is a drawing canvas, and if you use 2 fingers and drag, the canvas itself moves, like it is endless. They can go to a different part of the ...
1
vote
0answers
237 views
Android Draw only highlighted region on Canvas
I have a drawing on a canvas and I want to select only particular region that is surrounded by a line with different color (Something like the magic wand tool in Photoshop or the Fuzzy Select tool in ...
1
vote
0answers
170 views
Drawing triangles on each piece of a canvas pie graph to make arrows
So I'm having a really hard time trying to come up with a way to do this. Using canvas, I have to take some data that is used to create a pie graph, and turn that pie graph into a circle of arrows.
...
1
vote
0answers
233 views
Android Canvas - Bounding Rect
I have a simple question. What is a clip bounding rect on a Canvas? Is it the rectangle that the Canvas takes in reference to the viewport? I.e. what the Canvas.getClipBounds returns?
Cannot find ...
1
vote
0answers
221 views
android how to draw circle on canvas on bluetooth connected device
I am using default bluetoothChat app and trying to draw circle on canavs show that another device get that circle.Means two connected device can draw circle on canvas
here is my code ...
1
vote
0answers
218 views
WPF Canvas inheritance, mouse events not detected
I made a child class of Canvas WPF class to change rendering function.
However, when I try to change its background property in child class to handle mouse events properly
it is not working. When ...
1
vote
0answers
101 views
Divide String over 2 custom Rect shapes in onDraw();
I'm having issues dividing my String object over 2 Rect shapes.
Firstly i have no idea how to set canvas.drawtext to a specified region.
Like you would do if you use textview.
Secondly I can only ...
1
vote
0answers
240 views
Why does safari merge canvas drawings on mouse move?
The video shows the performance problem of safari on canvas drawing.
The drawing takes 100 msec. at average.
When I move cursor point A to B, other browsers draw the canvas at some points between A ...
1
vote
0answers
354 views
Z-Index Issue with HTML5 Canvas on IE
I'm trying to use the HTML5 Canvas Element with IE. I'm using ExCanvas which seems to be working ok so far. The triangle I created looks the way I want, but the stacking order varies in IE.
In ...
1
vote
0answers
185 views
Any javascript canvas library powerful enough to replace dom?
does anyone know of a javascript canvas library that is not just for "game apps" but also makes it easy to do things we can do using just "Dom".
I've looked at a couple of "canvas/art libraries" but ...
1
vote
0answers
695 views
Cufon hover issue when mousing over the cufon canvas tag
I'm trying to implement a different color / text-shadow on a standard anchor element. While it works fine for the most part, if the mouse enters and then leaves the "cufon canvas" created element, ...
1
vote
0answers
136 views
Indicator library - Rendering based on value, min and max
For dashboards, I need to render values in different ways: traffic light, progress bar, speedometer, gauge, etc.
Is there a JavaScript library that already does that - offer a choice of ...
1
vote
0answers
274 views
bitmap from canvas to OpenGL | Why does this code work in 2.1, but not 2.2 and later androids?
I got a code (by Google) like this :
InputStream is = mContext.getResources().openRawResource(R.drawable.icon);
bitmap = BitmapFactory.decodeStream(is);
...
1
vote
0answers
646 views
How can I get PhoneGap Plugin to Call Signature Capture Application via WebIntent
I am writing an Android PhoneGap Application.
I'd like to call the signature capture application on my phone and send the stored image back to my PhoneGap application as an jpg.
...
1
vote
0answers
94 views
canvas svg animate ( using rational numbers )
This renders fine.
svg.animate({width: "+=8%"},400);
However
svg.animate({width: "+=8.3333%"},400);
This produces errors.
My understanding of js etc , is such I am not sure if we can parse ...
1
vote
0answers
1k views
How to produce such page flip effects in Canvas?
google has published an e-book : http://www.20thingsilearned.com/
the reading experience is kind of fun.
I notice they used canvas to produce the page flip effects over reading areas.
Technically, ...
1
vote
0answers
271 views
Calculate the visible area of the image in WPF
I have implemented a custom canvas in WPF with c#. The canvas will be keeping custom drawing shapes. I have also added a zooming functionality to it. When the canvas is zoomed at very high level, I ...
1
vote
0answers
515 views
Android - Any way to access an Overlay's canvas in another class?
While this may sound backwards, I have a need to draw to my Overlay in another class.
I get a bitmap from the MapsView, then essentially draw it on the overlay.
I am having difficulty doing this ...
1
vote
0answers
612 views
Android - Animating Layers in Canvas
I'm trying to get to grips with using 'Canvas' in Android. I'm using SDK 1.5.
I've been able to rotate text, but the background gets rotated as well. Ideally, I'd like to be able to put my ...
1
vote
0answers
481 views
Canvas clipping rect - right/bottom edge inclusive?
on Android, there's a Canvas class that represents a drawing surface. It has a clipping rect. Question - are the rect's right and bottom borders inclusive or exclusive? In other words - if the rect is ...
1
vote
0answers
741 views
Android Custom View - Optimizing Redrawing while Fling
I have a custom view that represents something like a photo-collage.
I need to support the following:
Fling
Zoom In
Zoom Out
Here's what I currently do:
onDraw:
Look out for the number ...
