Skip to content

Commit

Permalink
fix(fabric.Object): Fix rendering of uniformStroke in groups (fabricj…
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur authored Jan 24, 2020
1 parent a07bedf commit a1e5d32
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [4.0.0-beta.5]

fix(fabric.Object): getObjectScaling takes in account rotation of objects inside groups. [#6118](https://github.com/fabricjs/fabric.js/pull/6118)

## [4.0.0-beta.4]

fix(fabric.Group): will draw shadow will call parent method. [#6116](https://github.com/fabricjs/fabric.js/pull/6116)
Expand Down
2 changes: 1 addition & 1 deletion HEADER.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */

var fabric = fabric || { version: '4.0.0-beta.4' };
var fabric = fabric || { version: '4.0.0-beta.5' };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"homepage": "http://fabricjs.com/",
"version": "4.0.0-beta.4",
"version": "4.0.0-beta.5",
"author": "Juriy Zaytsev <kangax@gmail.com>",
"contributors": [
{
Expand Down
14 changes: 8 additions & 6 deletions src/mixins/object_interactivity.mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
drawBorders: function(ctx, styleOverride) {
styleOverride = styleOverride || {};
var wh = this._calculateCurrentDimensions(),
strokeWidth = 1 / this.borderScaleFactor,
strokeWidth = this.borderScaleFactor,
width = wh.x + strokeWidth,
height = wh.y + strokeWidth,
hasControls = typeof styleOverride.hasControls !== 'undefined' ?
Expand Down Expand Up @@ -223,17 +223,19 @@
*/
drawBordersInGroup: function(ctx, options, styleOverride) {
styleOverride = styleOverride || {};
var p = { x: options.width, y: options.height },
var p = { x: this.width, y: this.height },
matrix = fabric.util.composeMatrix({
scaleX: options.scaleX,
scaleY: options.scaleY,
skewX: options.skewX
}),
wh = fabric.util.transformPoint(p, matrix),
strokeWidth = 1 / this.borderScaleFactor,
width = wh.x + strokeWidth / (this.strokeUniform ? options.scaleX : 1),
height = wh.y + strokeWidth / (this.strokeUniform ? options.scaleY : 1);

strokeWidth = this.strokeWidth,
borderScaleFactor = this.borderScaleFactor,
width =
wh.x + strokeWidth * (this.strokeUniform ? this.canvas.getZoom() : options.scaleX) + borderScaleFactor,
height =
wh.y + strokeWidth * (this.strokeUniform ? this.canvas.getZoom() : options.scaleY) + borderScaleFactor;
ctx.save();
this._setLineDash(ctx, styleOverride.borderDashArray || this.borderDashArray, null);
ctx.strokeStyle = styleOverride.borderColor || this.borderColor;
Expand Down
28 changes: 13 additions & 15 deletions src/shapes/object.class.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,9 @@

/**
* Scale factor of object's controlling borders
* bigger number will make a thicker border
* border is 1, so this is basically a border tickness
* since there is no way to change the border itself.
* @type Number
* @default
*/
Expand Down Expand Up @@ -855,6 +858,8 @@
strokeLineCap: this.strokeLineCap,
strokeDashOffset: this.strokeDashOffset,
strokeLineJoin: this.strokeLineJoin,
// TODO: add this before release
// strokeUniform: this.strokeUniform,
strokeMiterLimit: toFixed(this.strokeMiterLimit, NUM_FRACTION_DIGITS),
scaleX: toFixed(this.scaleX, NUM_FRACTION_DIGITS),
scaleY: toFixed(this.scaleY, NUM_FRACTION_DIGITS),
Expand Down Expand Up @@ -937,13 +942,8 @@
* @return {Object} object with scaleX and scaleY properties
*/
getObjectScaling: function() {
var scaleX = this.scaleX, scaleY = this.scaleY;
if (this.group) {
var scaling = this.group.getObjectScaling();
scaleX *= scaling.scaleX;
scaleY *= scaling.scaleY;
}
return { scaleX: scaleX, scaleY: scaleY };
var options = fabric.util.qrDecompose(this.calcTransformMatrix());
return { scaleX: Math.abs(options.scaleX), scaleY: Math.abs(options.scaleY) };
},

/**
Expand Down Expand Up @@ -1530,14 +1530,12 @@
}

ctx.save();
if (this.strokeUniform) {
var scaleX = this.scaleX;
var scaleY = this.scaleY;
if (this.group) {
scaleX *= this.group.scaleX;
scaleY *= this.group.scaleY;
}
ctx.scale(1 / scaleX, 1 / scaleY);
if (this.strokeUniform && this.group) {
var scaling = this.getObjectScaling();
ctx.scale(1 / scaling.scaleX, 1 / scaling.scaleY);
}
else if (this.strokeUniform) {
ctx.scale(1 / this.scaleX, 1 / this.scaleY);
}
this._setLineDash(ctx, this.strokeDashArray, this._renderDashedStroke);
if (this.stroke.toLive && this.stroke.gradientUnits === 'percentage') {
Expand Down
4 changes: 2 additions & 2 deletions test/unit/image.js
Original file line number Diff line number Diff line change
Expand Up @@ -774,8 +774,8 @@
assert.equal(image._element, image._filteredEl, 'after filtering elements are the same');
image.applyResizeFilters();
assert.notEqual(image._element, image._filteredEl, 'after resizing the 2 elements differ');
assert.equal(image._lastScaleX, image.scaleX, 'after resizing we know how much we scaled');
assert.equal(image._lastScaleY, image.scaleY, 'after resizing we know how much we scaled');
assert.equal(image._lastScaleX.toFixed(2), image.scaleX, 'after resizing we know how much we scaled');
assert.equal(image._lastScaleY.toFixed(2), image.scaleY, 'after resizing we know how much we scaled');
image.applyFilters();
assert.equal(image._element, image._filteredEl, 'after filters again the elements changed');
assert.equal(image._lastScaleX, 1, 'lastScale X is reset');
Expand Down
15 changes: 15 additions & 0 deletions test/unit/object.js
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,21 @@
});
});

QUnit.test('getObjectScaling in group with object rotated', function(assert) {
var object = new fabric.Object({ scaleX: 3, scaleY: 2, angle: 45 });
var group = new fabric.Group();
group.scaleX = 2;
group.scaleY = 3;
object.group = group;
var objectScale = object.getObjectScaling();
objectScale.scaleX = objectScale.scaleX.toFixed(3);
objectScale.scaleY = objectScale.scaleY.toFixed(3);
assert.deepEqual(objectScale, {
scaleX: '7.649',
scaleY: '4.707',
});
});

QUnit.test('dirty flag on set property', function(assert) {
var object = new fabric.Object({ scaleX: 3, scaleY: 2});
object.cacheProperties = ['propA', 'propB'];
Expand Down

0 comments on commit a1e5d32

Please sign in to comment.