vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

164 lines
4.4 KiB

  1. /**
  2. * Associates a canvas to a given image, containing a number of renderings
  3. * of the image at various sizes.
  4. *
  5. * This technique is known as 'mipmapping'.
  6. *
  7. * NOTE: Images can also be of type 'data:svg+xml`. This code also works
  8. * for svg, but the mipmapping may not be necessary.
  9. */
  10. class CachedImage {
  11. constructor(image) {
  12. this.NUM_ITERATIONS = 4; // Number of items in the coordinates array
  13. this.image = new Image();
  14. this.canvas = document.createElement('canvas');
  15. }
  16. /**
  17. * Called when the image has been succesfully loaded.
  18. */
  19. init() {
  20. if (this.initialized()) return;
  21. var w = this.image.width;
  22. var h = this.image.height;
  23. // Ease external access
  24. this.width = w;
  25. this.height = h;
  26. // Make canvas as small as possible
  27. this.canvas.width = 3*w/4;
  28. this.canvas.height = h/2;
  29. // Coordinates and sizes of images contained in the canvas
  30. // Values per row: [top x, left y, width, height]
  31. this.coordinates = [
  32. [ 0 , 0 , w/2 , h/2],
  33. [ w/2 , 0 , w/4 , h/4],
  34. [ w/2 , h/4, w/8 , h/8],
  35. [ 5*w/8, h/4, w/16, h/16]
  36. ];
  37. this._fillMipMap();
  38. }
  39. /**
  40. * @return {Boolean} true if init() has been called, false otherwise.
  41. */
  42. initialized() {
  43. return (this.coordinates !== undefined);
  44. }
  45. /**
  46. * Redraw main image in various sizes to the context.
  47. *
  48. * The rationale behind this is to reduce artefacts due to interpolation
  49. * at differing zoom levels.
  50. *
  51. * Source: http://stackoverflow.com/q/18761404/1223531
  52. *
  53. * This methods takes the resizing out of the drawing loop, in order to
  54. * reduce performance overhead.
  55. *
  56. * TODO: The code assumes that a 2D context can always be gotten. This is
  57. * not necessarily true! OTOH, if not true then usage of this class
  58. * is senseless.
  59. *
  60. * @private
  61. */
  62. _fillMipMap() {
  63. var ctx = this.canvas.getContext('2d');
  64. // First zoom-level comes from the image
  65. var to = this.coordinates[0];
  66. ctx.drawImage(this.image, to[0], to[1], to[2], to[3]);
  67. // The rest are copy actions internal to the canvas/context
  68. for (let iterations = 1; iterations < this.NUM_ITERATIONS; iterations++) {
  69. let from = this.coordinates[iterations - 1];
  70. let to = this.coordinates[iterations];
  71. ctx.drawImage(this.canvas,
  72. from[0], from[1], from[2], from[3],
  73. to[0], to[1], to[2], to[3]
  74. );
  75. }
  76. }
  77. /**
  78. * Draw the image, using the mipmap if necessary.
  79. *
  80. * MipMap is only used if param factor > 2; otherwise, original bitmap
  81. * is resized. This is also used to skip mipmap usage, e.g. by setting factor = 1
  82. *
  83. * Credits to 'Alex de Mulder' for original implementation.
  84. *
  85. * ctx {Context} context on which to draw zoomed image
  86. * factor {Float} scale factor at which to draw
  87. */
  88. drawImageAtPosition(ctx, factor, left, top, width, height) {
  89. if (factor > 2 && this.initialized()) {
  90. // Determine which zoomed image to use
  91. factor *= 0.5;
  92. let iterations = 0;
  93. while (factor > 2 && iterations < this.NUM_ITERATIONS) {
  94. factor *= 0.5;
  95. iterations += 1;
  96. }
  97. if (iterations >= this.NUM_ITERATIONS) {
  98. iterations = this.NUM_ITERATIONS - 1;
  99. }
  100. //console.log("iterations: " + iterations);
  101. let from = this.coordinates[iterations];
  102. ctx.drawImage(this.canvas,
  103. from[0], from[1], from[2], from[3],
  104. left, top, width, height
  105. );
  106. } else if (this._isImageOk()) {
  107. // Draw image directly
  108. ctx.drawImage(this.image, left, top, width, height);
  109. }
  110. }
  111. /**
  112. * Check if image is loaded
  113. *
  114. * Source: http://stackoverflow.com/a/1977898/1223531
  115. *
  116. * @private
  117. */
  118. _isImageOk(img) {
  119. var img = this.image;
  120. // During the onload event, IE correctly identifies any images that
  121. // weren’t downloaded as not complete. Others should too. Gecko-based
  122. // browsers act like NS4 in that they report this incorrectly.
  123. if (!img.complete) {
  124. return false;
  125. }
  126. // However, they do have two very useful properties: naturalWidth and
  127. // naturalHeight. These give the true size of the image. If it failed
  128. // to load, either of these should be zero.
  129. if (typeof img.naturalWidth !== "undefined" && img.naturalWidth === 0) {
  130. return false;
  131. }
  132. // No other way of checking: assume it’s ok.
  133. return true;
  134. }
  135. }
  136. export default CachedImage;