I found that there are only can fill rectangle, but no rounded corner one, how can I do that?
|
|
Canvas doesn't provide a method which draw a rounded corner rectangle. How about using lineTo() and arc() methods ? Or, You can also use quadraticCurveTo() method instead arc() method. http://www.html5.jp/canvas/ref/method/sample/quadraticCurveTo2.html |
|||||
|
|
I needed to do the same thing and created a method to do it.
See http://js-bits.blogspot.com/2010/07/canvas-rounded-corner-rectangles.html for further explanation |
||||
|
|
|
I started with @jhoff's solution, but rewrote it to use width/height parameters, and using
Also returning the context so you can chain a little. E.g.:
|
||||
|
Here's one I wrote... uses arcs instead of quadratic curves for better control over radius. Also, it leaves the stroking and filling up to you
Here is an example:
|
|||||||||
|
|
Juan, I made a slight improvement to your method to allow for changing each rectangle corner radius individually:
Use it like this:
|
|||
|
|
To make the function more consistent with the normal means of using a canvas context, the canvas context class can be extended to include a 'fillRoundedRect' method -- that can be called in the same way fillRect is called:
The code checks to see if the prototype for the constructor for the canvas context object contains a 'fillRoundedRect' property and adds one -- the first time around. It is invoked in the same manner as the fillRect method:
The method uses the arcTo method as Grumdring did. In the method, 'this' is a reference to the 'ctx' object. The stroke argument defaults to false if undefined. The fill argument defaults to fill the rectangle if undefined. (Tested on Firefox, I don't know if all implementations permit extension in this manner.) |
|||
|
|
Opera, ffs.
Since Opera is going WebKit, this should also remain valid in the legacy case. |
||||
|
|