view Applications/Samples/rt-viewer-demo/build-web.sh @ 1327:4f8db2d202c8 broker

OrthancSeriesProgressiveLoader now has two modes that can be selected at object creation : - progressive (will first load jpeg50, then jpeg90 then PAM) - non-progressive (will directly load PAM (uncompressed)) Please note that the slice loading order remains dynamic and depending upon the slice that the client code wishes to extract from the volume.
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 25 Mar 2020 14:34:27 +0100
parents 1d9deb4ee84c
children
line wrap: on
line source

#!/bin/bash

set -e

target=${1:-all}
# this script currently assumes that the wasm code has been built on its side and is availabie in build-wasm/

currentDir=$(pwd)
samplesRootDir=$(pwd)

tscOutput=$samplesRootDir/build-tsc-output/
outputDir=$samplesRootDir/build-web/
mkdir -p "$outputDir"

# files used by all single files samples
cp "$samplesRootDir/index.html" "$outputDir"
cp "$samplesRootDir/samples-styles.css" "$outputDir"

# build rt-viewer-demo
cp $samplesRootDir/rt-viewer-demo.html $outputDir
tsc --project $samplesRootDir/rt-viewer-demo.tsconfig.json --outDir "$tscOutput"
browserify \
    "$tscOutput/orthanc-stone/Platforms/Wasm/logger.js" \
    "$tscOutput/orthanc-stone/Platforms/Wasm/stone-framework-loader.js" \
    "$tscOutput/orthanc-stone/Platforms/Wasm/wasm-application-runner.js" \
    "$tscOutput/orthanc-stone/Platforms/Wasm/wasm-viewport.js" \
    "$tscOutput/rt-viewer-sample/rt-viewer-demo.js" \
    -o "$outputDir/app-rt-viewer-demo.js"
cp "$currentDir/build-wasm/RtViewerDemo.js"  $outputDir
cp "$currentDir/build-wasm/RtViewerDemo.wasm"  $outputDir

cd $currentDir