mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-25 14:46:10 +03:00
Fix Ian's comments.
This commit is contained in:
parent
44395662d1
commit
9d053c545b
@ -42,11 +42,9 @@
|
|||||||
* @param {OpenSeadragon.Viewer} options.viewer - The Viewer that owns this Drawer.
|
* @param {OpenSeadragon.Viewer} options.viewer - The Viewer that owns this Drawer.
|
||||||
* @param {OpenSeadragon.Viewport} options.viewport - Reference to Viewer viewport.
|
* @param {OpenSeadragon.Viewport} options.viewport - Reference to Viewer viewport.
|
||||||
* @param {Element} options.element - Parent element.
|
* @param {Element} options.element - Parent element.
|
||||||
* @param {Number} [options.opacity=1] - See opacity in {@link OpenSeadragon.Options} for details.
|
|
||||||
* @param {Number} [options.debugGridColor] - See debugGridColor in {@link OpenSeadragon.Options} for details.
|
* @param {Number} [options.debugGridColor] - See debugGridColor in {@link OpenSeadragon.Options} for details.
|
||||||
*/
|
*/
|
||||||
$.Drawer = function( options ) {
|
$.Drawer = function( options ) {
|
||||||
var _this = this;
|
|
||||||
|
|
||||||
$.console.assert( options.viewer, "[Drawer] options.viewer is required" );
|
$.console.assert( options.viewer, "[Drawer] options.viewer is required" );
|
||||||
|
|
||||||
@ -72,7 +70,9 @@ $.Drawer = function( options ) {
|
|||||||
this.viewer = options.viewer;
|
this.viewer = options.viewer;
|
||||||
this.viewport = options.viewport;
|
this.viewport = options.viewport;
|
||||||
this.debugGridColor = options.debugGridColor || $.DEFAULT_SETTINGS.debugGridColor;
|
this.debugGridColor = options.debugGridColor || $.DEFAULT_SETTINGS.debugGridColor;
|
||||||
this.opacity = options.opacity === undefined ? $.DEFAULT_SETTINGS.opacity : options.opacity;
|
if (options.opacity) {
|
||||||
|
$.console.error( "[Drawer] options.opacity is no longer accepted; set the opacity on the TiledImage instead" );
|
||||||
|
}
|
||||||
|
|
||||||
this.useCanvas = $.supportsCanvas && ( this.viewer ? this.viewer.useCanvas : true );
|
this.useCanvas = $.supportsCanvas && ( this.viewer ? this.viewer.useCanvas : true );
|
||||||
/**
|
/**
|
||||||
@ -98,10 +98,10 @@ $.Drawer = function( options ) {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Sketch canvas used to temporarily draw tiles which cannot be drawn directly
|
* Sketch canvas used to temporarily draw tiles which cannot be drawn directly
|
||||||
* to the main canvas due to opacity.
|
* to the main canvas due to opacity. Lazily initialized.
|
||||||
*/
|
*/
|
||||||
this.sketchCanvas = this.useCanvas ? document.createElement( "canvas" ) : null;
|
this.sketchCanvas = null;
|
||||||
this.sketchContext = this.useCanvas ? this.sketchCanvas.getContext( "2d" ) : null;
|
this.sketchContext = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @member {Element} element
|
* @member {Element} element
|
||||||
@ -118,8 +118,8 @@ $.Drawer = function( options ) {
|
|||||||
// check canvas available width and height, set canvas width and height such that the canvas backing store is set to the proper pixel density
|
// check canvas available width and height, set canvas width and height such that the canvas backing store is set to the proper pixel density
|
||||||
if (this.useCanvas) {
|
if (this.useCanvas) {
|
||||||
var viewportSize = this._calculateCanvasSize();
|
var viewportSize = this._calculateCanvasSize();
|
||||||
this.canvas.width = this.sketchCanvas.width = viewportSize.x;
|
this.canvas.width = viewportSize.x;
|
||||||
this.canvas.height = this.sketchCanvas.height = viewportSize.y;
|
this.canvas.height = viewportSize.y;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.canvas.style.width = "100%";
|
this.canvas.style.width = "100%";
|
||||||
@ -167,8 +167,11 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
* @return {OpenSeadragon.Drawer} Chainable.
|
* @return {OpenSeadragon.Drawer} Chainable.
|
||||||
*/
|
*/
|
||||||
setOpacity: function( opacity ) {
|
setOpacity: function( opacity ) {
|
||||||
this.opacity = opacity;
|
$.console.error("drawer.setOpacity is deprecated. Use tiledImage.setOpacity instead.");
|
||||||
$.setElementOpacity( this.canvas, this.opacity, true );
|
var world = this.viewer.world;
|
||||||
|
for (var i = 0; i < world.getItemCount(); i++) {
|
||||||
|
world.getItemAt( i ).setOpacity( opacity );
|
||||||
|
}
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -177,7 +180,16 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
* @returns {Number}
|
* @returns {Number}
|
||||||
*/
|
*/
|
||||||
getOpacity: function() {
|
getOpacity: function() {
|
||||||
return this.opacity;
|
$.console.error("drawer.getOpacity is deprecated. Use tiledImage.getOpacity instead.");
|
||||||
|
var world = this.viewer.world;
|
||||||
|
var maxOpacity = 0;
|
||||||
|
for (var i = 0; i < world.getItemCount(); i++) {
|
||||||
|
var opacity = world.getItemAt( i ).getOpacity();
|
||||||
|
if ( opacity > maxOpacity ) {
|
||||||
|
maxOpacity = opacity;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return maxOpacity;
|
||||||
},
|
},
|
||||||
|
|
||||||
// deprecated
|
// deprecated
|
||||||
@ -221,12 +233,14 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
//force unloading of current canvas (1x1 will be gc later, trick not necessarily needed)
|
//force unloading of current canvas (1x1 will be gc later, trick not necessarily needed)
|
||||||
this.canvas.width = 1;
|
this.canvas.width = 1;
|
||||||
this.canvas.height = 1;
|
this.canvas.height = 1;
|
||||||
|
this.sketchCanvas = null;
|
||||||
|
this.sketchContext = null;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clears the Drawer so it's ready to draw another frame.
|
* Clears the Drawer so it's ready to draw another frame.
|
||||||
*/
|
*/
|
||||||
clear: function() {
|
clear: function( useSketch ) {
|
||||||
this.canvas.innerHTML = "";
|
this.canvas.innerHTML = "";
|
||||||
if ( this.useCanvas ) {
|
if ( this.useCanvas ) {
|
||||||
var viewportSize = this._calculateCanvasSize();
|
var viewportSize = this._calculateCanvasSize();
|
||||||
@ -234,8 +248,13 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
this.canvas.height != viewportSize.y ) {
|
this.canvas.height != viewportSize.y ) {
|
||||||
this.canvas.width = viewportSize.x;
|
this.canvas.width = viewportSize.x;
|
||||||
this.canvas.height = viewportSize.y;
|
this.canvas.height = viewportSize.y;
|
||||||
|
if ( this.sketchCanvas !== null ) {
|
||||||
|
this.sketchCanvas.width = this.canvas.width;
|
||||||
|
this.sketchCanvas.height = this.canvas.height;
|
||||||
}
|
}
|
||||||
this.context.clearRect( 0, 0, viewportSize.x, viewportSize.y );
|
}
|
||||||
|
this._getContext( useSketch ).clearRect(
|
||||||
|
0, 0, viewportSize.x, viewportSize.y );
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -269,7 +288,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
$.console.assert(drawingHandler, '[Drawer.drawTile] drawingHandler is required');
|
$.console.assert(drawingHandler, '[Drawer.drawTile] drawingHandler is required');
|
||||||
|
|
||||||
if ( this.useCanvas ) {
|
if ( this.useCanvas ) {
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
var context = this._getContext( useSketch );
|
||||||
// TODO do this in a more performant way
|
// TODO do this in a more performant way
|
||||||
// specifically, don't save,rotate,restore every time we draw a tile
|
// specifically, don't save,rotate,restore every time we draw a tile
|
||||||
if( this.viewport.degrees !== 0 ) {
|
if( this.viewport.degrees !== 0 ) {
|
||||||
@ -284,14 +303,27 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_getContext: function( useSketch ) {
|
||||||
|
var context = this.context;
|
||||||
|
if ( useSketch ) {
|
||||||
|
if (this.sketchCanvas === null) {
|
||||||
|
this.sketchCanvas = document.createElement( "canvas" );
|
||||||
|
this.sketchCanvas.width = this.canvas.width;
|
||||||
|
this.sketchCanvas.height = this.canvas.height;
|
||||||
|
this.sketchContext = this.sketchCanvas.getContext( "2d" );
|
||||||
|
}
|
||||||
|
context = this.sketchContext;
|
||||||
|
}
|
||||||
|
return context;
|
||||||
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
saveContext: function( useSketch ) {
|
saveContext: function( useSketch ) {
|
||||||
if (!this.useCanvas) {
|
if (!this.useCanvas) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
this._getContext( useSketch ).save();
|
||||||
context.save();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
@ -300,8 +332,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
this._getContext( useSketch ).restore();
|
||||||
context.restore();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
@ -310,7 +341,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
var context = this._getContext( useSketch );
|
||||||
context.beginPath();
|
context.beginPath();
|
||||||
context.rect(rect.x, rect.y, rect.width, rect.height);
|
context.rect(rect.x, rect.y, rect.width, rect.height);
|
||||||
context.clip();
|
context.clip();
|
||||||
@ -322,7 +353,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
var context = this._getContext( useSketch );
|
||||||
context.save();
|
context.save();
|
||||||
context.fillStyle = fillStyle;
|
context.fillStyle = fillStyle;
|
||||||
context.fillRect(rect.x, rect.y, rect.width, rect.height);
|
context.fillRect(rect.x, rect.y, rect.width, rect.height);
|
||||||
@ -331,12 +362,11 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Blends the sketch canvas in the main canvas.
|
* Blends the sketch canvas in the main canvas.
|
||||||
* The sketch canvas is then cleared.
|
|
||||||
* @param {Float} opacity The opacity of the blending.
|
* @param {Float} opacity The opacity of the blending.
|
||||||
* @returns {undefined}
|
* @returns {undefined}
|
||||||
*/
|
*/
|
||||||
blendSketch: function(opacity) {
|
blendSketch: function(opacity) {
|
||||||
if (!this.useCanvas) {
|
if (!this.useCanvas || !this.sketchCanvas) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -344,17 +374,15 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
this.context.globalAlpha = opacity;
|
this.context.globalAlpha = opacity;
|
||||||
this.context.drawImage(this.sketchCanvas, 0, 0);
|
this.context.drawImage(this.sketchCanvas, 0, 0);
|
||||||
this.context.restore();
|
this.context.restore();
|
||||||
this.sketchContext.clearRect(0, 0,
|
|
||||||
this.sketchCanvas.width, this.sketchCanvas.height);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
drawDebugInfo: function( tile, count, i, useSketch ){
|
drawDebugInfo: function( tile, count, i ){
|
||||||
if ( !this.useCanvas ) {
|
if ( !this.useCanvas ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
var context = this.context;
|
||||||
context.save();
|
context.save();
|
||||||
context.lineWidth = 2 * $.pixelDensityRatio;
|
context.lineWidth = 2 * $.pixelDensityRatio;
|
||||||
context.font = 'small-caps bold ' + (13 * $.pixelDensityRatio) + 'px arial';
|
context.font = 'small-caps bold ' + (13 * $.pixelDensityRatio) + 'px arial';
|
||||||
@ -362,7 +390,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
context.fillStyle = this.debugGridColor;
|
context.fillStyle = this.debugGridColor;
|
||||||
|
|
||||||
if ( this.viewport.degrees !== 0 ) {
|
if ( this.viewport.degrees !== 0 ) {
|
||||||
this._offsetForRotation( tile, this.viewport.degrees, useSketch );
|
this._offsetForRotation( tile, this.viewport.degrees );
|
||||||
}
|
}
|
||||||
|
|
||||||
context.strokeRect(
|
context.strokeRect(
|
||||||
@ -424,15 +452,15 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
);
|
);
|
||||||
|
|
||||||
if ( this.viewport.degrees !== 0 ) {
|
if ( this.viewport.degrees !== 0 ) {
|
||||||
this._restoreRotationChanges( tile, useSketch );
|
this._restoreRotationChanges( tile );
|
||||||
}
|
}
|
||||||
context.restore();
|
context.restore();
|
||||||
},
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
debugRect: function(rect, useSketch) {
|
debugRect: function(rect) {
|
||||||
if ( this.useCanvas ) {
|
if ( this.useCanvas ) {
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
var context = this.context;
|
||||||
context.save();
|
context.save();
|
||||||
context.lineWidth = 2 * $.pixelDensityRatio;
|
context.lineWidth = 2 * $.pixelDensityRatio;
|
||||||
context.strokeStyle = this.debugGridColor;
|
context.strokeStyle = this.debugGridColor;
|
||||||
@ -456,7 +484,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
px = tile.position.x - cx,
|
px = tile.position.x - cx,
|
||||||
py = tile.position.y - cy;
|
py = tile.position.y - cy;
|
||||||
|
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
var context = this._getContext( useSketch );
|
||||||
context.save();
|
context.save();
|
||||||
|
|
||||||
context.translate(cx, cy);
|
context.translate(cx, cy);
|
||||||
@ -475,7 +503,7 @@ $.Drawer.prototype = /** @lends OpenSeadragon.Drawer.prototype */{
|
|||||||
tile.position.x = px;
|
tile.position.x = px;
|
||||||
tile.position.y = py;
|
tile.position.y = py;
|
||||||
|
|
||||||
var context = useSketch ? this.sketchContext : this.context;
|
var context = this._getContext( useSketch );
|
||||||
context.restore();
|
context.restore();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -204,7 +204,7 @@
|
|||||||
* If 0, adjusts to fit viewer.
|
* If 0, adjusts to fit viewer.
|
||||||
*
|
*
|
||||||
* @property {Number} [opacity=1]
|
* @property {Number} [opacity=1]
|
||||||
* Opacity of the drawer (1=opaque, 0=transparent)
|
* Default opacity of the tiled images (1=opaque, 0=transparent)
|
||||||
*
|
*
|
||||||
* @property {String|CanvasGradient|CanvasPattern|Function} [placeholderFillStyle=null]
|
* @property {String|CanvasGradient|CanvasPattern|Function} [placeholderFillStyle=null]
|
||||||
* Draws a colored rectangle behind the tile if it is not loaded yet.
|
* Draws a colored rectangle behind the tile if it is not loaded yet.
|
||||||
|
@ -64,6 +64,7 @@
|
|||||||
* @param {Number} [options.blendTime] - See {@link OpenSeadragon.Options}.
|
* @param {Number} [options.blendTime] - See {@link OpenSeadragon.Options}.
|
||||||
* @param {Boolean} [options.alwaysBlend] - See {@link OpenSeadragon.Options}.
|
* @param {Boolean} [options.alwaysBlend] - See {@link OpenSeadragon.Options}.
|
||||||
* @param {Number} [options.minPixelRatio] - See {@link OpenSeadragon.Options}.
|
* @param {Number} [options.minPixelRatio] - See {@link OpenSeadragon.Options}.
|
||||||
|
* @param {Number} [options.opacity=1] - Opacity the tiled image should be drawn at.
|
||||||
* @param {Boolean} [options.debugMode] - See {@link OpenSeadragon.Options}.
|
* @param {Boolean} [options.debugMode] - See {@link OpenSeadragon.Options}.
|
||||||
* @param {String|CanvasGradient|CanvasPattern|Function} [options.placeholderFillStyle] - See {@link OpenSeadragon.Options}.
|
* @param {String|CanvasGradient|CanvasPattern|Function} [options.placeholderFillStyle] - See {@link OpenSeadragon.Options}.
|
||||||
* @param {String|Boolean} [options.crossOriginPolicy] - See {@link OpenSeadragon.Options}.
|
* @param {String|Boolean} [options.crossOriginPolicy] - See {@link OpenSeadragon.Options}.
|
||||||
@ -119,12 +120,6 @@ $.TiledImage = function( options ) {
|
|||||||
delete options.height;
|
delete options.height;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.opacity = 1;
|
|
||||||
if ( options.opacity ) {
|
|
||||||
this.opacity = options.opacity;
|
|
||||||
delete options.opacity;
|
|
||||||
}
|
|
||||||
|
|
||||||
$.extend( true, this, {
|
$.extend( true, this, {
|
||||||
|
|
||||||
//internal state properties
|
//internal state properties
|
||||||
@ -148,7 +143,8 @@ $.TiledImage = function( options ) {
|
|||||||
minPixelRatio: $.DEFAULT_SETTINGS.minPixelRatio,
|
minPixelRatio: $.DEFAULT_SETTINGS.minPixelRatio,
|
||||||
debugMode: $.DEFAULT_SETTINGS.debugMode,
|
debugMode: $.DEFAULT_SETTINGS.debugMode,
|
||||||
crossOriginPolicy: $.DEFAULT_SETTINGS.crossOriginPolicy,
|
crossOriginPolicy: $.DEFAULT_SETTINGS.crossOriginPolicy,
|
||||||
placeholderFillStyle: $.DEFAULT_SETTINGS.placeholderFillStyle
|
placeholderFillStyle: $.DEFAULT_SETTINGS.placeholderFillStyle,
|
||||||
|
opacity: $.DEFAULT_SETTINGS.opacity
|
||||||
|
|
||||||
}, options );
|
}, options );
|
||||||
|
|
||||||
@ -492,6 +488,23 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
|||||||
this._needsDraw = true;
|
this._needsDraw = true;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns {Number} The TiledImage's current opacity.
|
||||||
|
*/
|
||||||
|
getOpacity: function() {
|
||||||
|
return this.opacity;
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {Number} opacity Opacity the tiled image should be drawn at.
|
||||||
|
* @returns {OpenSeadragon.TiledImage} Chainable
|
||||||
|
*/
|
||||||
|
setOpacity: function(opacity) {
|
||||||
|
this.opacity = opacity;
|
||||||
|
this._needsDraw = true;
|
||||||
|
return this;
|
||||||
|
},
|
||||||
|
|
||||||
// private
|
// private
|
||||||
_setScale: function(scale, immediately) {
|
_setScale: function(scale, immediately) {
|
||||||
var sameTarget = (this._scaleSpring.target.value === scale);
|
var sameTarget = (this._scaleSpring.target.value === scale);
|
||||||
@ -1161,6 +1174,7 @@ function drawTiles( tiledImage, lastDrawn ) {
|
|||||||
tile;
|
tile;
|
||||||
|
|
||||||
if ( tiledImage.opacity <= 0 ) {
|
if ( tiledImage.opacity <= 0 ) {
|
||||||
|
drawDebugInfo( tiledImage, lastDrawn );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var useSketch = tiledImage.opacity < 1;
|
var useSketch = tiledImage.opacity < 1;
|
||||||
@ -1195,14 +1209,6 @@ function drawTiles( tiledImage, lastDrawn ) {
|
|||||||
tiledImage._drawer.drawTile( tile, tiledImage._drawingHandler, useSketch );
|
tiledImage._drawer.drawTile( tile, tiledImage._drawingHandler, useSketch );
|
||||||
tile.beingDrawn = true;
|
tile.beingDrawn = true;
|
||||||
|
|
||||||
if( tiledImage.debugMode ) {
|
|
||||||
try {
|
|
||||||
tiledImage._drawer.drawDebugInfo( tile, lastDrawn.length, i, useSketch );
|
|
||||||
} catch(e) {
|
|
||||||
$.console.error(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if( tiledImage.viewer ){
|
if( tiledImage.viewer ){
|
||||||
/**
|
/**
|
||||||
* <em>- Needs documentation -</em>
|
* <em>- Needs documentation -</em>
|
||||||
@ -1228,6 +1234,21 @@ function drawTiles( tiledImage, lastDrawn ) {
|
|||||||
|
|
||||||
if ( useSketch ) {
|
if ( useSketch ) {
|
||||||
tiledImage._drawer.blendSketch( tiledImage.opacity );
|
tiledImage._drawer.blendSketch( tiledImage.opacity );
|
||||||
|
tiledImage._drawer.clear( true );
|
||||||
|
}
|
||||||
|
drawDebugInfo( tiledImage, lastDrawn );
|
||||||
|
}
|
||||||
|
|
||||||
|
function drawDebugInfo( tiledImage, lastDrawn ) {
|
||||||
|
if( tiledImage.debugMode ) {
|
||||||
|
for ( var i = lastDrawn.length - 1; i >= 0; i-- ) {
|
||||||
|
var tile = lastDrawn[ i ];
|
||||||
|
try {
|
||||||
|
tiledImage._drawer.drawDebugInfo( tile, lastDrawn.length, i );
|
||||||
|
} catch(e) {
|
||||||
|
$.console.error(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -374,7 +374,6 @@ $.Viewer = function( options ) {
|
|||||||
viewer: this,
|
viewer: this,
|
||||||
viewport: this.viewport,
|
viewport: this.viewport,
|
||||||
element: this.canvas,
|
element: this.canvas,
|
||||||
opacity: this.opacity,
|
|
||||||
debugGridColor: this.debugGridColor
|
debugGridColor: this.debugGridColor
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -1198,6 +1197,7 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
* @param {OpenSeadragon.Rect} [options.clip] - An area, in image pixels, to clip to
|
* @param {OpenSeadragon.Rect} [options.clip] - An area, in image pixels, to clip to
|
||||||
* (portions of the image outside of this area will not be visible). Only works on
|
* (portions of the image outside of this area will not be visible). Only works on
|
||||||
* browsers that support the HTML5 canvas.
|
* browsers that support the HTML5 canvas.
|
||||||
|
* @param {Number} [options.opacity] Opacity the tiled image should be drawn at by default.
|
||||||
* @param {Function} [options.success] A function that gets called when the image is
|
* @param {Function} [options.success] A function that gets called when the image is
|
||||||
* successfully added. It's passed the event object which contains a single property:
|
* successfully added. It's passed the event object which contains a single property:
|
||||||
* "item", the resulting TiledImage.
|
* "item", the resulting TiledImage.
|
||||||
@ -1221,6 +1221,9 @@ $.extend( $.Viewer.prototype, $.EventSource.prototype, $.ControlDock.prototype,
|
|||||||
if (options.placeholderFillStyle === undefined) {
|
if (options.placeholderFillStyle === undefined) {
|
||||||
options.placeholderFillStyle = this.placeholderFillStyle;
|
options.placeholderFillStyle = this.placeholderFillStyle;
|
||||||
}
|
}
|
||||||
|
if (options.opacity === undefined) {
|
||||||
|
options.opacity = this.opacity;
|
||||||
|
}
|
||||||
|
|
||||||
var myQueueItem = {
|
var myQueueItem = {
|
||||||
options: options
|
options: options
|
||||||
|
Loading…
Reference in New Issue
Block a user