Re: [webkit-dev] Canvas API in Webkit

2008-12-28 Thread Nilesh Patil
Hi Dont really know for which platform/port of webkit u want to do this. If its a gtk port u can use a cairo for doing the same . If its s60 (if at all u r experimenting) then using CFbsBitmapDevice context u can create a memory bitmap and then draw it onto graphics context. Webkit also does

Re: [webkit-dev] Canvas API in Webkit

2008-12-25 Thread Darin Adler
On Dec 24, 2008, at 7:48 PM, Lucius Fox wrote: Thanks. I think Safari has a 'history' feature or Nokia S60 browser which shows each url in history as a preview image. Not the desktop version of Safari, but yes, the mobile Safari has something like this. I think the Nokia browser does too.

Re: [webkit-dev] Canvas API in Webkit

2008-12-25 Thread Zalan Bujtas
Well, those browsers aren't open source, so there's no real way for you to find out how they implemented the feature. I think it's safe to assume that they draw the web pages into a bitmap and then shrink the image. It certainly has nothing to do with the HTML canvas element in either

Re: [webkit-dev] Canvas API in Webkit

2008-12-24 Thread Lucius Fox
was invented by Apple for Safari/WebKit :) - Original Message - *From:* Lucius Fox lucius.fo...@gmail.com *To:* webkit-dev@lists.webkit.org *Sent:* Sunday, December 14, 2008 5:24 PM *Subject:* [webkit-dev] Canvas API in Webkit Hi, Mozilla has a Canvas API which allow extension

Re: [webkit-dev] Canvas API in Webkit

2008-12-15 Thread Anthony Ricaud
You might be interested in Ariya's experiments with tab preview: http://ariya.blogspot.com/2008/07/be-my-mirror-my-sword-and-shield.html http://ariya.blogspot.com/2008/08/seas-would-rise-when-i-gave-words.html Anthony. Le 14 déc. 08 à 23:24, Lucius Fox a écrit : Hi, Mozilla has a Canvas API

[webkit-dev] Canvas API in Webkit

2008-12-14 Thread Lucius Fox
Hi, Mozilla has a Canvas API which allow extension developer to paint the web page content to a surface. So that extension tab preview is possible: http://ted.mielczarek.org/code/mozilla/tabpreview/ Is that the same kind of api in webkit? If yes, can you please tell me where i can find example?

Re: [webkit-dev] Canvas API in Webkit

2008-12-14 Thread Justin Haygood
The HTML Canvas element was invented by Apple for Safari/WebKit :) - Original Message - From: Lucius Fox To: webkit-dev@lists.webkit.org Sent: Sunday, December 14, 2008 5:24 PM Subject: [webkit-dev] Canvas API in Webkit Hi, Mozilla has a Canvas API which allow extension

Re: [webkit-dev] Canvas API in WebKit

2008-12-14 Thread Darin Adler
On Dec 14, 2008, at 2:24 PM, Lucius Fox wrote: Is that the same kind of api in webkit? No, we don't have API for drawing web page content to the canvas graphics context. That sounds like a good idea for an extension for canvas. I hope someone adds it to WebKit at some point. --