0

我正在使用 ImageTools 库 (imagetools.codeplex.com) 从外部 URL 加载图像。

<Canvas x:Name="LayoutRoot" Background="Blue"
        Width="466" Height="204" >

    <Image Name="theImage" />

    <Button x:Name="btnTest" Canvas.Top="0" Canvas.Left="-200" Click="btnTest_Click"
                Width="100" Height="23"
                Content="Test Button">
    </Button>

</Canvas>

在里面:

    public MainPage()
    {
        InitializeComponent();

        Encoders.AddEncoder<PngEncoder>();
        Decoders.AddDecoder<PngDecoder>();
        Encoders.AddEncoder<JpegEncoder>();
        Decoders.AddDecoder<JpegDecoder>();
    }

然后:

    private void btnTest_Click(object sender, RoutedEventArgs e)
    {
        ExtendedImage ei = new ExtendedImage();
        // ei.UriSource = new Uri(@"https://www.google.com/images/srpr/logo3w.png"); // NOT working
        ei.UriSource = new Uri(@"/Images/header.png", UriKind.Relative); // Working

        ei.LoadingCompleted += new EventHandler((ss, ee) =>
        {
            Dispatcher.BeginInvoke(() =>
            {
                theImage.Source = ei.ToBitmap();
            });
        });
    }

我发现加载本地文件/Image/header.png可以正常工作,但加载外部 URL 图像 ( https://www.google.com/images/srpr/logo3w.png) 根本不工作。

它表现得很疯狂:一旦我单击测试按钮,LayoutRoot 画布就会消失。

但是,根据此讨论: http: //imagetools.codeplex.com/discussions/250624 加载外部 URL 图像应该可以工作。

4

1 回答 1

0

它可以与 UriType 相关吗?

相对、绝对、相对或绝对

ei.UriSource =
new Uri(@"https://www.google.com/images/srpr/logo3w.png"
,UriKind.RelativeOrAbsolute); // works ?

http://msdn.microsoft.com/en-us/library/system.urikind(v=vs.95).aspx

希望有所帮助!

编辑:您需要一个类似http://twitter.com/crossdomain.xml的文件,否则 SL 会正常抛出 SecurityException。

对于跨域实现,请参见

https://stackoverflow.com/a/1325011/413032

http://www.silverlighthack.com/post/2008/11/08/Silverlight-clientaccesspolicyxml-files-for-the-Enterprise-(Part-1-of-2).aspx

于 2012-11-18T20:54:58.100 回答