fill and stroke support for Sprite

This commit is contained in:
lavrton 2015-10-22 08:50:42 +02:00
parent bd910a8bc7
commit 05c90bd45c
4 changed files with 19 additions and 4 deletions

View File

@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- RGBA filter. Thanks to [@codefo](https://github.com/codefo)
- `stroke` and `fill` support for `Konva.Sprite`
### Fixed
- Correct calculation in `getClientRect` method of `Konva.Line` and `Konva.Container`.

View File

@ -13629,6 +13629,13 @@ var Konva = {};
height = set[ix4 + 3],
image = this.getImage();
if (this.hasFill() || this.hasStroke()) {
context.beginPath();
context.rect(0, 0, width, height);
context.closePath();
context.fillStrokeShape(this);
}
if(image) {
if (offsets) {
var offset = offsets[anim],

8
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -95,6 +95,13 @@
height = set[ix4 + 3],
image = this.getImage();
if (this.hasFill() || this.hasStroke()) {
context.beginPath();
context.rect(0, 0, width, height);
context.closePath();
context.fillStrokeShape(this);
}
if(image) {
if (offsets) {
var offset = offsets[anim],