我创建了一个 deepzoom 图像,当图像文件放置在本地时,我可以使用以下代码显示它:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="text/css">
body {
margin: 0px;
font-family: Verdana;
line-height: 1.25em;
background-color:#000000;
}
</style>
<script type="text/javascript" src="http://seadragon.com/ajax/0.8/seadragon-min.js"></script>
<script type="text/javascript">
var viewer;
function init() {
viewer = new Seadragon.Viewer("container");
viewer.openDzi("spider.xml");
viewer.setFullPage(true);
}
Seadragon.Utils.addEvent(window, "load", init);
</script>
</head>
<body>
<div id="content">
<div id="container">
</div>
</div>
</body>
</html>
但是当我随后将图像和 xml 文件上传到http://foto.qaz.dk
并将以下代码更改viewer.openDzi("spider.xml");
为viewer.openDzi("http://foto.qaz.dk/spider.xml");
我从 seadragon 收到一条错误消息“嗯,这似乎不是有效的深度缩放图像”
我究竟做错了什么?