forked from fabricjs/fabric.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upper canvas retina scaling (fabricjs#5938)
- Loading branch information
Showing
6 changed files
with
1,063 additions
and
944 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,88 @@ | ||
(function() { | ||
var canvas = new fabric.Canvas(); | ||
QUnit.module('fabric.BaseBrush', { | ||
afterEach: function() { | ||
QUnit.module('fabric.BaseBrush', function(hooks) { | ||
hooks.afterEach(function() { | ||
canvas.cancelRequestedRender(); | ||
} | ||
}); | ||
QUnit.test('fabric brush constructor', function(assert) { | ||
assert.ok(fabric.BaseBrush); | ||
}); | ||
|
||
var brush = new fabric.BaseBrush(); | ||
QUnit.test('fabric brush constructor', function(assert) { | ||
assert.ok(fabric.BaseBrush); | ||
|
||
assert.ok(brush instanceof fabric.BaseBrush, 'should inherit from fabric.BaseBrush'); | ||
assert.equal(brush.color, 'rgb(0, 0, 0)', 'default color is black'); | ||
assert.equal(brush.width, 1, 'default width is 1'); | ||
assert.ok(typeof brush.setShadow === 'function', 'setShadow is a method'); | ||
}); | ||
QUnit.test('fabric pencil brush constructor', function(assert) { | ||
assert.ok(fabric.PencilBrush); | ||
var brush = new fabric.PencilBrush(canvas); | ||
assert.equal(brush.canvas, canvas, 'assigns canvas'); | ||
assert.deepEqual(brush._points, [], 'points is an empty array'); | ||
}); | ||
QUnit.test('fabric pencil brush draw point', function(assert) { | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
var pathData = brush.convertPointsToSVGPath(brush._points).join(''); | ||
assert.equal(pathData, 'M 9.999 10 L 10.001 10', 'path data create a small line that looks like a point'); | ||
}); | ||
QUnit.test('fabric pencil brush multiple points', function(assert) { | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
var pathData = brush.convertPointsToSVGPath(brush._points).join(''); | ||
assert.equal(pathData, 'M 9.999 10 L 10.001 10', 'path data create a small line that looks like a point'); | ||
assert.equal(brush._points.length, 2, 'concident points are discarded'); | ||
}); | ||
QUnit.test('fabric pencil brush multiple points not discarded', function(assert) { | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
var pointer2 = canvas.getPointer({ clientX: 15, clientY: 15}); | ||
var pointer3 = canvas.getPointer({ clientX: 20, clientY: 20}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
var pathData = brush.convertPointsToSVGPath(brush._points).join(''); | ||
assert.equal(pathData, 'M 9.999 9.999 Q 10 10 12.5 12.5 Q 15 15 17.5 17.5 Q 20 20 17.5 17.5 Q 15 15 17.5 17.5 L 20.001 20.001', 'path data create a complex path'); | ||
assert.equal(brush._points.length, 6, 'concident points are discarded'); | ||
}); | ||
QUnit.test('fabric pencil brush multiple points not discarded', function(assert) { | ||
var fired = false; | ||
var added = null; | ||
canvas.on('path:created', function(opt) { | ||
fired = true; | ||
added = opt.path; | ||
var brush = new fabric.BaseBrush(); | ||
|
||
assert.ok(brush instanceof fabric.BaseBrush, 'should inherit from fabric.BaseBrush'); | ||
assert.equal(brush.color, 'rgb(0, 0, 0)', 'default color is black'); | ||
assert.equal(brush.width, 1, 'default width is 1'); | ||
assert.ok(typeof brush.setShadow === 'function', 'setShadow is a method'); | ||
}); | ||
QUnit.test('fabric pencil brush constructor', function(assert) { | ||
assert.ok(fabric.PencilBrush); | ||
var brush = new fabric.PencilBrush(canvas); | ||
assert.equal(brush.canvas, canvas, 'assigns canvas'); | ||
assert.deepEqual(brush._points, [], 'points is an empty array'); | ||
}); | ||
|
||
[true, false].forEach(function(val) { | ||
QUnit.module('fabric.BaseBrush with canvas.enableRetinaScaling = ' + val, function(hooks) { | ||
hooks.beforeEach(function() { | ||
canvas.enableRetinaScaling = val; | ||
}); | ||
QUnit.test('fabric pencil brush draw point', function(assert) { | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
var pathData = brush.convertPointsToSVGPath(brush._points).join(''); | ||
assert.equal(pathData, 'M 9.999 10 L 10.001 10', 'path data create a small line that looks like a point'); | ||
}); | ||
QUnit.test('fabric pencil brush multiple points', function(assert) { | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
brush.onMouseMove(pointer, { e: {} }); | ||
var pathData = brush.convertPointsToSVGPath(brush._points).join(''); | ||
assert.equal(pathData, 'M 9.999 10 L 10.001 10', 'path data create a small line that looks like a point'); | ||
assert.equal(brush._points.length, 2, 'concident points are discarded'); | ||
}); | ||
QUnit.test('fabric pencil brush multiple points not discarded', function(assert) { | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
var pointer2 = canvas.getPointer({ clientX: 15, clientY: 15}); | ||
var pointer3 = canvas.getPointer({ clientX: 20, clientY: 20}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
var pathData = brush.convertPointsToSVGPath(brush._points).join(''); | ||
assert.equal(pathData, 'M 9.999 9.999 Q 10 10 12.5 12.5 Q 15 15 17.5 17.5 Q 20 20 17.5 17.5 Q 15 15 17.5 17.5 L 20.001 20.001', 'path data create a complex path'); | ||
assert.equal(brush._points.length, 6, 'concident points are discarded'); | ||
}); | ||
QUnit.test('fabric pencil brush multiple points not discarded', function(assert) { | ||
var fired = false; | ||
var added = null; | ||
canvas.on('path:created', function(opt) { | ||
fired = true; | ||
added = opt.path; | ||
}); | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
var pointer2 = canvas.getPointer({ clientX: 15, clientY: 15}); | ||
var pointer3 = canvas.getPointer({ clientX: 20, clientY: 20}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
brush.onMouseUp({ e: {} }); | ||
assert.equal(fired, true, 'event is fired'); | ||
assert.ok(added instanceof fabric.Path, 'a path is added'); | ||
assert.ok(added.path.length, 6, 'path has 6 steps'); | ||
canvas.off(); | ||
}); | ||
}); | ||
}); | ||
var brush = new fabric.PencilBrush(canvas); | ||
var pointer = canvas.getPointer({ clientX: 10, clientY: 10}); | ||
var pointer2 = canvas.getPointer({ clientX: 15, clientY: 15}); | ||
var pointer3 = canvas.getPointer({ clientX: 20, clientY: 20}); | ||
brush.onMouseDown(pointer, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
brush.onMouseMove(pointer2, { e: {} }); | ||
brush.onMouseMove(pointer3, { e: {} }); | ||
brush.onMouseUp({ e: {} }); | ||
assert.equal(fired, true, 'event is fired'); | ||
assert.ok(added instanceof fabric.Path, 'a path is added'); | ||
assert.ok(added.path.length, 6, 'path has 6 steps'); | ||
canvas.off(); | ||
}); | ||
})(); |
Oops, something went wrong.