Excanvas is a JavaScript library for bringing the HTML5 Canvas 2D API to versions of Internet Explorer prior to version 9.

learn more… | top users | synonyms

0
votes
0answers
20 views

Rendering SVG images everywhere with Modernizr, CanVG and ExCanvas

The website I'm making (here) has all its images as SVG. But since SVGs aren't compatible everywhere (notably IE <9 and Android browser on versions 2.x), I needed to find a workaround. That ...
0
votes
0answers
42 views

Excanvas is not working in IE8

I'm using excanvas for image processing at client side.It's working fine in IE7 but in in IE8 image itself is not being displayed. I have tried different solutions provided in stack overflow but there ...
0
votes
0answers
34 views

Flip image in Canvas , without using Scale -1

I am trying to add flip and flop functionality to this demo http://www.ernestdelgado.com/public-tests/canvasphoto/demo/canvas.html I am trying by setting scalex = -1 , its works , but this demo also ...
1
vote
0answers
117 views

excanvas drawimage doesn't work on IE8

Hi I have managed to make excanvas work in IE8 for simple examples however I couldn't make the following canvas example which contain drawimage work at IE8. Does anyone have any experience with ...
1
vote
0answers
62 views

excanvas IE8, Unexpected call to method or property access

Hi I am getting an error on IE8 which is "Unexpected call to method or property access." at the line "foo.appendChild(canvas);" My codes are as follows. <canvas id="foo" class="canvasstyle" ...
0
votes
1answer
210 views

Pie chart canvas not working in IE (edited)

I'm new to html5 and javascript. Trying to create a html5, javascript, css3 pie chart *(not using jquery)*for the first time. The pie chart can be perfectly created in chrome and firefox. Then after ...
1
vote
1answer
97 views

Internet Explorer 8 Messing Up My Bulletgraphs

I've created HTML and JavaScript files to display bulletgraphs, using the 'canvas' HTML5 tag. I've tried it in Chrome and it works nicely and changes width along with the size of the browser. I have ...
1
vote
1answer
146 views

Modernizr complete function seems to be getting ran too early

I have this javascript: Modernizr.load([ { test: Modernizr.canvas, nope: ['/assets/js/excanvas.js'], both: ['/assets/js/frank/pentool.js'], complete : function () ...
-1
votes
2answers
185 views

Does anyone know why my canvas tag won't show up in IE 8? [duplicate]

Possible Duplicate: How can I use the HTML5 canvas element in IE? I'm not sure what I'm doing wrong. I did what it said to do but nothing works. I'm using a grid system, but I don't think ...
0
votes
1answer
126 views

Double buffering with excanvas

What is a workaround available for implementing double buffering by using the explorer canvas library.? ie. I want to implement like this SourceImage -> Canvas1 -> Canvas2 Draw the source Image ...
0
votes
3answers
234 views

Supporting and emulatingn HTML5 <canvas> in older IE browsers

I found that excanvas and flashcanvas are the common libraries used for supporting canvas features in Internet Explorer( below 9) . But both of them doesn't have implemented all the specification ...
0
votes
1answer
148 views

Drawing image on the canvas using excanvas

I am using excanvas.js library for supporting canvas features in IE(below 9) browsers . The problem I am facing currently is that excanvas expects image as the first argument of the drawImage() ...
0
votes
1answer
193 views

Dygraphs doesn't draw the data line in IE8

I recently upgraded the Dygraphs library for a client's website, and it now doesn't render properly in IE8 (Yes, I know what you're thinking, but by client's clients love using IE and won't upgrade). ...
0
votes
0answers
123 views

Add correctly excanvas.js with yepNope.js

I am studing the library yepNope functioning. The thing that i want do, it's add with yepNope the excanvas.js and to make sure that the canvas work correctly. /*=YepNope=*/ yepnope([{ ...
0
votes
0answers
764 views

excanvas not working in IE8

I am having issues with excanvas not rendering in IE8. Here is where I initialize the canvas. var canvas = document.getElementById("map"); if (typeof (G_vmlCanvasManager) != 'undefined') { canvas ...
1
vote
1answer
599 views

Saving excanvas element as image in IE7/8

I am using IE7/8 for jqPlot for rendering canvas and would like to know if it is possible to print it out in jpg/png or any other format. I have been struggling with it from a long time and the only ...
0
votes
0answers
65 views

excanvas silverlight not handling onclick properly

I am writing a web app using the canvas tag, I have a row of dynamically generated canvas elements, each with an onclick event. This all works fine in the browsers you would expect it to. In IE, it ...
0
votes
2answers
439 views

HTML5 IE fix not working

I have created a bar chart which is a improvement of bar graph on HTML5Lab. I have included the excanvas.js but still it doesn't seems to show anything at all. My bar graph can be found here Note: ...
2
votes
0answers
277 views

ExCanvas not working in IE7 and IE8 IFrame

I am using IFrame as a popup for IE7 and IE8 but am not able to make ExCanvas work on it. While I checked it out on the developers tools, I was able to see the changes in my canvas tags but was not ...
2
votes
1answer
364 views

Paper.js with excanvas

I've grown to like paper.js a lot but after realizing that it does not support IE8, I was wondering if it was possible to have paper.js working together with excanvas? Has anyone tested this and are ...
3
votes
1answer
980 views

IE7 excanvas drawImage workaround?

Ahoy StackOverflow! I've run into the following problem: on IE7 only, if I call drawImage() after drawing anything to the canvas, excanvas does not draw the image at the desired x,y coordinates. I ...
0
votes
0answers
288 views

excanvas.js fails to draw in IE sometimes

I use the canvas element to draw something in a WebPart in SharePoint,because IE doesn't support it,so I import the excanvas.js to the page.But sometimes,the WebPart shows nothing.So I create a test ...
2
votes
0answers
286 views

jquery Colorbox data scrolling with flot graph

Good Day, I use colorbox for displaying data in new window. Everything was good, but I have to display dynamically created data (table with data) and then to draw graph. It was decided to draw data ...
0
votes
1answer
388 views

canvas fillStyle don't work on internet explorer

I want to add tint color to an image. excanvas don't support getImageData. I found a way tint an image with transparent color layer but it's don't work on ie. My code below. Also you can check on ...
0
votes
1answer
311 views

excanvas error on aspect ratio image resize

Code below creates fullscreen image with apect ratio. But it's dont work on ie with excanvas. i can't solve the problem. any help? here's jsfiddle link: http://jsfiddle.net/salt/Zs6uV/ solution : ...
0
votes
0answers
406 views

Excanvas Javascript wont work in IE8

I am using excanvas to work with html5 canvas in IE8. I created a litte jaavascript html5 game, and it work great in firefox, but when i use excanvas and try it in Ie8 the canvas stays black and ...
1
vote
1answer
768 views

Use excanvas together with kinetic.js?

I've tried to use excanvas.js together with kinetic.js, but with no success. Is there a way to make it work? Thanks!
2
votes
1answer
244 views

How to ensure my javascript function only executes after all external javascripts are loaded?

I am developing a WebPart in SharePoint,and I need to draw something in my WebPart using excanvas.js.But sometimes it shows nothing.The error message is: Object doesn't support property or method ...
0
votes
1answer
1k views

Excanvas: not displaying on page

I'm trying to get canvas to work with IE using excanvas. However it doesn't seem to show up anywhere. The below code works on all browsers except IE. I tried following the suggestions on excanvas' ...
0
votes
1answer
274 views

HTML5 Canvas Clip working when used along with explorercanvas

Has anyone got HTML5 canvas clipping (http://www.html5canvastutorials.com/tutorials/html5-canvas-clipping-region-tutorial/) work with explorercanvas (http://code.google.com/p/explorercanvas)? I have ...
3
votes
1answer
596 views

Loading excanvas polyfill via Modernizr.load fails

I'm attempting to load the excanvas polyfill in the page-specific js file for my page. This script file is inserted after the body tag on my page. The odd bit is that if I use <script ...
3
votes
1answer
282 views

Excanvas vml positioning issue

I've slogged my way through implementing excanvas on ie8. I've got the dynamic element bit sorted, the initially-hidden elements are now happily rendering throughout most of the app, and just when all ...
1
vote
1answer
250 views

Is there a way to clone a canvas element when using excanvas?

I'm looking for a way to clone a canvas element. Based on this question I tried something like this, which worked: var canvasContext = $("#canvas1")[0].getContext("2d"); canvasImageData = ...
1
vote
1answer
427 views

Has anyone made explorercanvas work with GWT?

Has anyone made explorercanvas work with GWT? Can you share the exact code? I see a lot of references to explorercanvas with GWT. For example: ...
1
vote
1answer
328 views

Printing HTML5 Canvas in IE6/7

I know IE6/7 does not natively support canvas and so I'm using excanvas.js for IE browsers. I have a script which draws two images onto a canvas tag. Eg. var canvas = $('.map_container')[0]; ...
3
votes
1answer
905 views

SVG rect vs div vs canvas

Just imagine building Google Maps for a large building floor plan with 3000 rooms. I need to display up to 3000 rectangles (the best would be to also be able to render random polygons, but at this ...
3
votes
3answers
3k views

jQPlot in IE (Using rePlot or reDraw)

I'm using the jqplot plugin to display gauge on an site. This runs perfectly in FF/Safari/Chrome but have to use excanvas to run in IE8. The problem is that the gauges are created dynamically, and so ...
0
votes
2answers
1k views

Excanvas.js doesn't work for me in IE8

Trying to makes work a canvas effect in IE8. With excanvas.js there are no problem in IE7 but in IE8, it doesn't work. The effect is named ECOTree, and I have made all the tricks and all the ...
0
votes
2answers
291 views

What are the best plugins to get jQuery charting/Sparklines to work in IE?

I'm having difficulty getting the wonderful jQuery Sparklines plugin to work in various versions of Internet Explorer. (Plugin ref: http://omnipotent.net/jquery.sparkline/) I have to admit that I ...
2
votes
1answer
1k views

IE7 excanvas — $(document).ready() and IE7 creates problem

EDIT: I've identified a link to the below problem to the use of $(document).ready() instead of using the old fashioned onload attribute of the body The problem In IE7 the canvas/excanvas does not ...
1
vote
0answers
823 views

Excanvas does not work in IE8

Excanvas does not work in IE8!!! I write program to paint by mouse on canvas element. There are fragment of my js-code window.attachEvent('onload', function () { function init() { ...
1
vote
2answers
6k views

Problem getting excanvas to use getContext in IE8

I am trying to implement excanvas in order to ensure canvas tags work in IE8 as well as all the other browsers we use here. I am having an issue getting getContext to work in IE8. I have read about ...
3
votes
1answer
2k views

Trying to implement excanvas but getting errors

I'm trying to implement excanvas so that my script works in IE as well as standards compliant browsers. I'm including jquery, excanvas then my script. I'm creating the canvas element like so: ...
1
vote
1answer
595 views

webshim polyfill canvas won't work in IE7 mode

I am having problems getting the webshims plugin canvas polyfill to work. I get the following error in IE9 using IE7 mode: SCRIPT438: Object doesn't support property or method 'fillRect' ...
1
vote
0answers
510 views

Using a background image on a flot diagram/excanvas in IE

I'm trying to use the excanvas/JQuery based "Flot" plugin but would like to use a background image. At the moment however there is a bug that means it's not possible to set a background image to the ...
0
votes
1answer
271 views

Excanvas: Can I use Processing.js with it at near-normal (for <canvas>) speeds?

I've recently come across Google's Excanvas stuff... It's all very well and good having <canvas> for the turdier browsers out there, but I was wondering how optimised it was; can I use ...
0
votes
0answers
609 views

Excanvas init not working on IE

Problems with Excanvas in IE, its throwing Errors, Code: var canvas = document.createElement('canvas'), ctx = false; canvas.width = 100; canvas.height = 100; canvas.id = 'someId'; ...
0
votes
1answer
555 views

excanvas throws me errors in IE

I am using excanvas.js that is used with flot jquery graphs. When in FF or chrome the graphs show great. on IE I get this error: Unknown runtime error excanvas.min.js, line 144 character 21 ...
2
votes
1answer
412 views

Strange extra characters in rendered html on IE 8

I have an ASP.Net MVC site that I want to render some custom HTML 5 canvasses in. I am getting a strange issue with the server serving up extra characters that are not in the source code. In order to ...
0
votes
0answers
789 views

Text is not displaying properly with canvas on IE8

I am new to play with canvas ... and I want to display the text on canvas and I am using the excanvas script . In my application the text on canvas displaying properly on FF but not on IE8 . My code ...

1 2