2

我正在尝试为我的 windows phone 8 应用程序制作一些美味的动态磁贴动作。我选择使用Cycle Tile模板来制作一些很棒的滑翔图像,但有一个问题:微软似乎已经为所有图像添加了一个灰色半透明过滤器,以便底部的标题文本即使在白色的情况下也清晰易读图片。如果开发人员打算使用WritableBitmap. 白色以灰白色出现,主题颜色比所有其他瓷砖更暗:

为什么!?

代码(在可视树中的用户控件中):

    const double TILE_H = 336;
    const double TILE_W = 691;
    Size TILE_SIZE = new Size(TILE_W, TILE_H);
    const string FILEDIREC = "/Shared/ShellContent";

    LayoutRoot.Height = TILE_H;
    LayoutRoot.Width = TILE_W;
    LayoutRoot.Clip = new RectangleGeometry() { Rect = new Rect(new Point(), TILE_SIZE) };
    LayoutRoot.Background = new SolidColorBrush(
        ((Color)Application.Current.Resources["PhoneAccentColor"]));

    TextBlock tb = new TextBlock();
    Canvas.SetLeft(tb, 200.0);
    tb.Text = "Why is this text grey? + lots more text";
    tb.FontSize = 50;
    tb.Width = 300;
    tb.Foreground = new SolidColorBrush(Colors.White);
    tb.TextWrapping = TextWrapping.Wrap;
    LayoutRoot.Children.Add(tb);

    var bmp = new WriteableBitmap((int)TILE_W, (int)TILE_H);
    bmp.Render(LayoutRoot, null);
    bmp.Invalidate();
    var isf = IsolatedStorageFile.GetUserStoreForApplication();
    var filename = FILEDIREC + "/tile.jpg";
    if (!isf.DirectoryExists(FILEDIREC))
    {
      isf.CreateDirectory(FILEDIREC);
    }
    using (var stream = isf.OpenFile(filename, System.IO.FileMode.OpenOrCreate))
    {
      bmp.SaveJpeg(stream, (int)TILE_W, (int)TILE_H, 0, 100);

    }
    imageURIs.Add(new Uri("isostore:" + filename, UriKind.Absolute));
    //similar process for other images used by CycleTileData
    //these images then added to CycleTileData in the usual way

任何帮助、解释、建议或变通方法都将不胜感激。谢谢。我尝试过使用不同瓷砖类型的图像,例如。翻转瓷砖的正面没有问题。

4

1 回答 1

1

我没有看到代码有任何明显的问题,但我会尝试使用独立存储资源管理器并下载文件并查看它的外观。

生成自定义图块时,您可能需要考虑生成 PNG 而不是 JPG。好处之一是您可以生成透明图像(这意味着您的图块将始终具有正确的主题背景颜色),并且 PNG 还使用无损压缩方案,因此不会引入压缩伪影。

看看这个答案,我在其中描述了我如何在我的一个应用程序中生成图块。希望这对你有一些用处。

于 2013-07-06T13:03:28.110 回答