Explorar el Código

Fix Blob Equirectangular image issue

We set image src as a blob for equirectangular image.
This cause content seurity policy issue. As most of the websites only accepts http/https/data for image src.

Fix:
I have passed actual url to parseGPanoXMP function and instead of blob url, I am using actual url.
pull/632/head
vineet kumar hace 6 años
padre
commit
f0cfe3a54f
Se han modificado 1 ficheros con 7 adiciones y 3 borrados
  1. +7
    -3
      src/js/pannellum.js

+ 7
- 3
src/js/pannellum.js Ver fichero

@@ -397,7 +397,7 @@ function init() {
anError(config.strings.fileAccessError.replace('%s', a.outerHTML));
}
var img = this.response;
parseGPanoXMP(img);
parseGPanoXMP(img, p);
infoDisplay.load.msg.innerHTML = '';
};
xhr.onprogress = function(e) {
@@ -516,7 +516,7 @@ function onImageLoad() {
* @private
* @param {Image} image - Image to read XMP metadata from.
*/
function parseGPanoXMP(image) {
function parseGPanoXMP(image, imageUrl) {
var reader = new FileReader();
reader.addEventListener('loadend', function() {
var img = reader.result;
@@ -591,7 +591,11 @@ function parseGPanoXMP(image) {
}
// Load panorama
panoImage.src = window.URL.createObjectURL(image);
// panoImage.src = window.URL.createObjectURL(image);
panoImage.src = imageUrl;
//if site has security content policy for src/data-src - http/https/data, then blob url gives error
//so instead of blob url we can directly set url here
panoImage.crossOrigin = "Anonymous"; //We don't want cors here.
});
if (reader.readAsBinaryString !== undefined)
reader.readAsBinaryString(image);


Cargando…
Cancelar
Guardar