mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 13:16:10 +03:00
Merge branch 'master' of https://github.com/avandecreme/openseadragon
This commit is contained in:
commit
43a9c14d3b
22
src/tile.js
22
src/tile.js
@ -280,6 +280,17 @@ $.Tile.prototype = {
|
|||||||
|
|
||||||
context.globalAlpha = this.opacity;
|
context.globalAlpha = this.opacity;
|
||||||
|
|
||||||
|
if (typeof scale === 'number' && scale !== 1) {
|
||||||
|
// draw tile at a different scale
|
||||||
|
position = position.times(scale);
|
||||||
|
size = size.times(scale);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (translate instanceof $.Point) {
|
||||||
|
// shift tile position slightly
|
||||||
|
position = position.plus(translate);
|
||||||
|
}
|
||||||
|
|
||||||
//if we are supposed to be rendering fully opaque rectangle,
|
//if we are supposed to be rendering fully opaque rectangle,
|
||||||
//ie its done fading or fading is turned off, and if we are drawing
|
//ie its done fading or fading is turned off, and if we are drawing
|
||||||
//an image with an alpha channel, then the only way
|
//an image with an alpha channel, then the only way
|
||||||
@ -301,17 +312,6 @@ $.Tile.prototype = {
|
|||||||
// changes as we are rendering the image
|
// changes as we are rendering the image
|
||||||
drawingHandler({context: context, tile: this, rendered: rendered});
|
drawingHandler({context: context, tile: this, rendered: rendered});
|
||||||
|
|
||||||
if (typeof scale === 'number' && scale !== 1) {
|
|
||||||
// draw tile at a different scale
|
|
||||||
position = position.times(scale);
|
|
||||||
size = size.times(scale);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (translate instanceof $.Point) {
|
|
||||||
// shift tile position slightly
|
|
||||||
position = position.plus(translate);
|
|
||||||
}
|
|
||||||
|
|
||||||
context.drawImage(
|
context.drawImage(
|
||||||
rendered.canvas,
|
rendered.canvas,
|
||||||
0,
|
0,
|
||||||
|
Loading…
Reference in New Issue
Block a user