Microsoft Pivot JIT 集合
我正在尝试在我的应用程序中实现 Microsoft Pivot 查看器,我认为 JIT 集合和链接集合之间的交叉是最好的情况,但是我遇到了一些问题。
集合的图像由 C# Windows 服务生成,该服务过夜运行生成所需的新图像。
当用户使用自定义 HttpHandler 请求数据时,会动态生成 CXML 文件。
问题是,对于 10000 多个项目,我的开发机器在尝试将生成的 png/jpg 图像转换为 DZC 时内存不足。
有没有可用的工具可以将我拥有的图像转换为 DZI 图像。我看过 Deep Zoom Composer,但我确实需要一些可以过夜运行来转换图像的东西,目前我有大约 45,000 张图像需要转换,Composer 只是锁定尝试用这么多的图像做任何事情图像。
理想情况下,我希望能够直接使用该服务创建 DZI 图像,而不是首先创建 png/jpg 图像。
I'm attempting to implement a Microsoft Pivot viewer within my application, I've decided that a cross between a JIT collection and Linked Collection is the best case however I'm having a few issues.
The images for the collection are generated by a C# Windows Service that runs overnight generating new images that are required.
The CXML file is then generated dynamically when the user request the data using a custom HttpHandler.
The issue is that with 10000+ items my development machine runs out of memory whilst trying to turn the generated png/jpg images into a DZC.
Is there a tool available that I could use to turn the images that I have into DZI images. I've looked at the Deep Zoom Composer, but I really need something that I can run overnight to convert the images, currently I have about 45,000 images that I need to convert, the Composer just locks up trying to do anything with that amount of images.
Ideally I would like to be able to create the DZI images directly using the service instead of creating png/jpg images first.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道您是否已经拥有这些工具,但这里什么也没有:
http: //www.silverlight.net/archives/whitepapers/deep-zoom-tools
如果您使用这些工具,您可以预处理图像并稍后在您的收藏中使用它们。如果您需要动态图像,您可能需要看看 Silverligh 5 RC(其最新版本包括新的数据透视器)。这个新版本在运行时将您的 xaml 转换为 dzi,是一个非常酷的控件!
i could not see if you already had these tools or not but here goes nothing:
http://www.silverlight.net/archives/whitepapers/deep-zoom-tools
if you use these tools you can preprocess the images and use them later in your collection. if you need dynamic images you might want to take a look at the Silverligh 5 RC (of which the latest version includes the new pivotviewer). this new version converts your xaml into dzi at runtime and is a really cool control!