deepzoom

DeepZoom Images not loaded in Silverlight

I have a sample application of silver light in which there are combination of normal images & deep Zoom Images. I have used DeepZoomTools.dll. Now if my first image is deep zoom image, it will not load.(Loading image displays continuously).In Fiddler, MultiTileSource xml is downloaded prefectly but in UI it shows in progress image. If I ...

Getting a tiled image collection on the iPad (Deep Zoom)

I have a set of tiled image collections created via Microsoft's Deep Zoom composer, and a Silverlight application that currently consumes them for display via MultiScaleImage - it's all working pretty well - I'd just like to get some experience with iPad programming and have a couple of ideas for some iPad applications. All my ideas rel...

Best practice for panning/zooming a user control?

We currently have a user control which displays a dynamic matrix of other user controls. Since it's dynamic, the view can become large, requiring the user to scroll up/down & left/right in the browser to view everything. I would like to give the users one view of the user control with the ability to pan & zoom on it, much like the fe...

Can't create more than one overlay in Seadragon

Hi everyone, I am trying to add overlays to a seadragon map I am making but for some reason that I can not figure our seadragon ignores all my overlays except the first one. Any help with this is much appreciated. var viewer = null; function init() { Seadragon.Config.autoHideControls = false; viewer = new Seadragon.Viewer("co...

Where can I find an infinite canvas control for Silverlight?

Are there any Silverlight controls available to perform this dynamic DeepZoom trick that Canvas for OneNote does? By trick I mean hosting the interactive UserControls in DeepZoom, and allowing them to be independently resized. http://www.officelabs.com/projects/canvasforonenote/Pages/default.aspx ...

Programmatically compose images into one grid in Deep Zoom

Folks, the problem: there are individual 1MB images that represent a grid of images that should be placed side-by-side with no overlap and then conveted/exported to deepzoom. Image are named by row and column like image_col_row.jpg. The challenge: the total number of images in thousands, which makes it prohibitive for manual compositio...

Silverlight DeepZoom Dragging lets one drag the MultiScaleImage off screen.

I'm having some issue and am hoping someone can answer the question. I have a Deep Zoom project that I used the standard (deep zoom composer) project which places a DeepZommInitializer behavior on the MultiScaleImage control. I'm trying to constrain dragging to make sure that the user doesn't drag the image off screen (and therefore is u...

Search results on PDFs as deepzoom image

We'd like to show a (DeepZoom) graphic of the our search results, highlighting the most relevant documents/passages from 1600+ PDF document. Having seen DeepZoom used to drill into a massive image it seems possible to generate an image on the fly to do this. Can anyone point me at some resources to help with this, and care to comment on ...

Deep Zoom Image construction

I'm trying to build a .dzi, in the case a very wide, but not tall image. I have created the following, test1.xml which contains <?xml version="1.0" encoding="utf-8"?> <Image TileSize="1024" Overlap="0" Format="png" ServerFormat="Default" xmlns="http://schemas.microsoft.com/deepzoom/2009"&gt; <Size Width="2048" Height="1024" /> </Ima...

Is it possible to disable blending in Deep Zoom?

I have one very wide, but not tall image, hence I only require one level of the image pyramid. The image displays fine except that it appears somewhat opaque, presumably due to the software trying to blending with the (non-existent) images lower/higher in the pyramid. ...

How to add text in Deep Zoom Composer?

Hi, I want to compose my own project in deep zoom composer however I would like to know on how to add text per image zoomed in just like the hard rock memorabilia I want to consume it, using silverlight 4.0 As you notice, under right pane, it has its description about the image. Thank you. ...

Deep Zoom Questions, correct export template and joining MultiScaleSubImages

I'm looking into the possibility of using Deep Zoom to push "pages" to a Windows Mobile 7 app. I want the pages to be individual units, but they will often be viewed in pairs. Is it possible to pair two MultiScaleSubImages together so that they pan and zoom as one? Also, this is one of my first forays into Deep Zoom. If I want somethin...

Automation of Open Zoom

How would I automate the process of deploying a gigantic jpeg on a web server and then generate the necessary files to load the image up on the frontend site in OpenZoom? I'm working in php but any shell/bash/python scripts are welcome ...

Very large images in web browser

We would like to display very large (50mb plus) images in Internet Explorer. We would like to avoid compression as compression algorithms are not what CSI would have us believe that they are and the resulting files are too lossy. As a result, we have come up with two options: Silverlight Deep Zoom or a Flash based solution (such as Zoo...

How to center image in MultiScaleImage

Found the function which position the image(s) in the multiscaleimage... but I'm not sure how to get the actual image width (for single or multiple) and change the _msi.ViewportOrigin x param based on that. There are 2 lines which affect the image position... one is _msi.ViewportOrigin = new Point(0, 0); and the other is: //if (lay...

Deep Zoom with Overlay and Rotation

I'm looking to extend a Deep Zoom MultiScaleImage so that the user can draw selections and rotate the MSI. I've managed to do something similar in the past with images, but the MSI control is giving me some pain. I've followed the pretty excellent tutorial here for putting overlays on top of an MSI but I am having problems with the over...

Add deep zoom folder to VS2010 silverlight applciation

Hi, I have copied the deepzoom data created folder "Generated Images" into a folder named "temp" in my VS2010 web project, but I am unable to see the "Build" property of this ("temp") folder. While compilation, VS2010 shows an error "'Build Action' not set to 'Resource'" ...

Keep relative positions over MultiScaleImage

I implemented the following Silverlight app after seeing this instructions, here's my code: public partial class MainPage : UserControl { private Point lastMousePos = new Point(); private double zoom = 1; private Point lastMouseLogicaPos = new Point(); private Point lastMouseViewPort = new Point(); private bool durin...