openseadragon获取选择dataurl / blob

时间:2017-08-14 13:28:05

标签: image image-processing canvas openseadragon

我从openSeadragonSelection中检索一个rect:

查看器:

this.viewer = OpenSeadragon(this.config);
this.selection = this.viewer.selection({
    showConfirmDenyButtons:  true,
    styleConfirmDenyButtons: true,
    returnPixelCoordinates:  true,
    onSelection:  rect => console.log(rect)
});
this.selection.enable();

通过onSelection:

t.SelectionRect {x: 3502, y: 2265, width: 1122, height: 887, rotation:0, degrees: 0, …}

我不知道如何从我的查看器实例中通过rect获取画布。

this.viewer.open(new OpenSeadragon.ImageTileSource(this.getTile(this.src)));

自我实现的imageViewer返回所选区域的画布。所以我可以获得blob并将其发布到服务器:

    onSave(canvas){
        let source = canvas.toDataURL();
        this.setState({source:source, crop: false, angle: 0});
        save(this.dataURItoBlob(source), source.match(new RegExp("\/(.*);"))1]);
    }

    dataURItoBlob(dataURI) {
    // convert base64/URLEncoded data component to raw binary data held in a string
        var byteString;
        if (dataURI.split(',')[0].indexOf('base64') >= 0)
            byteString = atob(dataURI.split(',')[1]);
        else
            byteString = unescape(dataURI.split(',')[1]);
        // separate out the mime component
        var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0];
        // write the bytes of the string to a typed array
        var ia = new Uint8Array(byteString.length);
        for (var i = 0; i < byteString.length; i++) {
            ia[i] = byteString.charCodeAt(i);
        }
        return new Blob([ia], {type:mimeString});
    }

如何通过rect获取查看器的图像。也应该考虑轮换。

@iangilman

非常感谢您的建议。我创建了另一个我裁剪的画布,然后将它放回到观察者中。我不确定您的图书馆是否支持类似内容:

const viewportRect = self.viewer.viewport.imageToViewportRectangle(rect);
const webRect = self.viewer.viewport.viewportToViewerElementRectangle(viewportRect);
const { x, y, width, height } = webRect || {};
const { canvas } = self.viewer.drawer;
let source = canvas.toDataURL();

const img = new Image();
img.onload = function () {
  let croppedCanvas = document.createElement('canvas');
  let ctx = croppedCanvas.getContext('2d');
  croppedCanvas.width = width;
  croppedCanvas.height = height;
  ctx.drawImage(img, x, y, width, height, 0, 0, width, height);
  let croppedSrc = croppedCanvas.toDataURL();
  //update viewer with cropped image
  self.tile = self.getTile(croppedSrc);
  self.ImageTileSource = new OpenSeadragon.ImageTileSource(self.tile);
  self.viewer.open(self.ImageTileSource);
}
img.src = source;

尚未考虑轮换。

1 个答案:

答案 0 :(得分:1)

我想你需要将矩形转换为适当的坐标,然后创建第二个画布并将OSD画布中的相应位复制到第二个画布中。

看起来选择矩形可能在图像坐标中? OSD画布将位于Web坐标中,或者可能是HDPI显示屏上的两倍。 OSD具有许多转换功能,例如:

var viewportRect = viewer.viewport.imageToViewportRectangle(imageRect);
var webRect = viewer.viewport.viewportToViewerElementRectangle(viewportRect);

您可以通过OpenSeadragon.pixelDensityRatio找出像素密度。

一旦你有了合适的矩形,就很容易从一个画布复制到另一个画布。我不确定如何合并旋转,但它可能就像向其中一个画布上下文添加旋转调用一样简单。

对不起,这有点模糊,但我希望它有所帮助!