mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
build
This commit is contained in:
parent
272dafe398
commit
7cfef08872
@ -12,7 +12,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## Changes
|
||||
|
||||
* Fixed flow for `contextmenu` event. Not it will be triggered on shapes too
|
||||
* Fixed flow for `contextmenu` event. Now it will be triggered on shapes too
|
||||
* `find()` method for Containers can use a function as a parameter
|
||||
|
||||
## Fixed
|
||||
@ -21,6 +21,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||
* `Konva.Arrow` will not draw dash for pointers
|
||||
* setAttr will trigger change event if new value is the same Object
|
||||
* better behavior of `dblclick` event when you click fast on different shapes
|
||||
* `stage.toDataURL` will use `pixelRatio = 1` by default.
|
||||
|
||||
## [2.0.2][2018-03-15]
|
||||
|
||||
|
20
konva.js
20
konva.js
@ -4013,7 +4013,7 @@
|
||||
* @param {Number} [config.quality] jpeg quality. If using an "image/jpeg" mimeType,
|
||||
* you can specify the quality from 0 to 1, where 0 is very poor quality and 1
|
||||
* is very high quality
|
||||
* @paremt {Number} [config.pixelRatio] pixelRatio of ouput image url. Default is 1
|
||||
* @param {Number} [config.pixelRatio] pixelRatio of output image url. Default is 1
|
||||
* @returns {String}
|
||||
*/
|
||||
toDataURL: function(config) {
|
||||
@ -10329,22 +10329,6 @@
|
||||
getContent: function() {
|
||||
return this.content;
|
||||
},
|
||||
/**
|
||||
* Creates a composite data URL
|
||||
* @method
|
||||
* @memberof Konva.Stage.prototype
|
||||
* @param {Object} config
|
||||
* @param {Function} [config.callback] function executed when the composite has completed. Deprecated as method is sync now.
|
||||
* @param {String} [config.mimeType] can be "image/png" or "image/jpeg".
|
||||
* "image/png" is the default
|
||||
* @param {Number} [config.x] x position of canvas section
|
||||
* @param {Number} [config.y] y position of canvas section
|
||||
* @param {Number} [config.width] width of canvas section
|
||||
* @param {Number} [config.height] height of canvas section
|
||||
* @param {Number} [config.quality] jpeg quality. If using an "image/jpeg" mimeType,
|
||||
* you can specify the quality from 0 to 1, where 0 is very poor quality and 1
|
||||
* is very high quality
|
||||
*/
|
||||
toDataURL: function(config) {
|
||||
config = config || {};
|
||||
|
||||
@ -10355,7 +10339,7 @@
|
||||
canvas = new Konva.SceneCanvas({
|
||||
width: config.width || this.getWidth(),
|
||||
height: config.height || this.getHeight(),
|
||||
pixelRatio: config.pixelRatio
|
||||
pixelRatio: config.pixelRatio || 1
|
||||
}),
|
||||
_context = canvas.getContext()._context,
|
||||
layers = this.children;
|
||||
|
2
konva.min.js
vendored
2
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1131,7 +1131,7 @@ suite('Stage', function() {
|
||||
assert.equal(stage.getIntersection(pos), circle, 'circle again');
|
||||
});
|
||||
|
||||
test.only('toDataURL should use pixelRatio 1 by default', function(done) {
|
||||
test('toDataURL should use pixelRatio 1 by default', function(done) {
|
||||
var stage = addStage();
|
||||
|
||||
var url = stage.toDataURL();
|
||||
|
Loading…
Reference in New Issue
Block a user