Skip to main content

Web 上的原始圖片使用正確的原點與顏色

透過呼叫 Web 引擎函式直接解碼的原始圖片, 現在會使用正確的像素格式,並從左上角開始。

摘要

#

Web 上原始圖片的繪製方式已經修正, 現在與其他平台保持一致。 這會導致舊有應用程式必須傳入不正確資料給 ui.ImageDescriptor.rawui.decodeImageFromPixels 的情況出現問題, 導致產生的圖片上下顛倒且顏色錯誤 (紅色與藍色通道被對調)。

背景說明

#

Flutter 內部使用的「像素串流(pixel stream)」格式 一直以來都定義為相同格式: 每個像素由四個 8 位元通道依照 format 參數定義的順序打包, 然後依序排列成一列, 從左到右,再由上到下排列各列。

然而,Flutter for Web,特別是 HTML renderer, 過去因為對 BMP 格式規範的誤解, 實作方式是錯誤的。 因此,如果應用程式或函式庫使用 ui.ImageDescriptor.rawui.decodeImageFromPixels, 就必須將像素資料由下往上排列,並對調紅色與藍色通道 (例如,若使用 ui.PixelFormat.rgba8888 格式, 資料的前 4 個位元組會被視為第一個像素的藍色、綠色、 紅色與透明通道)。

這個錯誤已經由 engine#29593 修正, 但應用程式與函式庫必須修正資料產生的方式。

變更說明

#

ui.ImageDescriptor.rawui.decodeImageFromPixelspixels 參數 現在會使用 format 所描述的正確像素順序, 並且從左上角作為起點。

透過直接呼叫這兩個函式繪製的圖片, 舊有直接呼叫這些函式的程式碼可能會發現 圖片上下顛倒且顏色錯誤。

遷移指南

#

如果應用程式使用最新版 Flutter 並遇到此情況, 最直接的解決方式是手動翻轉圖片,並改用其他像素格式。 但這通常不是最有效率的解法, 因為這類像素資料通常是從其他來源產生, 因此可以在產生過程中直接完成翻轉。

遷移前的程式碼:

dart
import 'dart:typed_data';
import 'dart:ui' as ui;

// Parse `image` as a displayable image.
//
// Each byte in `image` is a pixel channel, in the order of blue, green, red,
// and alpha, starting from the bottom left corner and going row first.
Future<ui.Image> parseMyImage(Uint8List image, int width, int height) async {
  final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw(
    await ui.ImmutableBuffer.fromUint8List(image),
    width: width,
    height: height,
    pixelFormat: ui.PixelFormat.rgba8888,
  );
  return (await (await descriptor.instantiateCodec()).getNextFrame()).image;
}

遷移後的程式碼:

dart
import 'dart:typed_data';
import 'dart:ui' as ui;

Uint8List verticallyFlipImage(Uint8List sourceBytes, int width, int height) {
  final Uint32List source = Uint32List.sublistView(ByteData.sublistView(sourceBytes));
  final Uint32List result = Uint32List(source.length);
  int sourceOffset = 0;
  int resultOffset = 0;
  for (final int row = height - 1; row >= 0; row -= 1) {
    sourceOffset = width * row;
    for (final int col = 0; col < width; col += 1) {
      result[resultOffset] = source[sourceOffset];
      resultOffset += 1;
      sourceOffset += 1;
    }
  }
  return Uint8List.sublistView(ByteData.sublistView(sourceBytes))
}

Future<ui.Image> parseMyImage(Uint8List image, int width, int height) async {
  final Uint8List correctedImage = verticallyFlipImage(image, width, height);
  final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw(
    await ui.ImmutableBuffer.fromUint8List(correctedImage),
    width: width,
    height: height,
    pixelFormat: ui.PixelFormat.rgba8888,
  );
  return (await (await descriptor.instantiateCodec()).getNextFrame()).image;
}

比較棘手的情況是,當你正在撰寫一個函式庫(library),並且希望這個函式庫同時能在最新版本的 Flutter 以及較舊的修補前版本上運作。在這種情況下,你可以先解碼單一像素,來判斷行為是否已經改變。

遷移後的程式碼如下:

dart
Uint8List verticallyFlipImage(Uint8List sourceBytes, int width, int height) {
  // Same as the example above.
}

late Future<bool> imageRawUsesCorrectBehavior = (() async {
  final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw(
    await ui.ImmutableBuffer.fromUint8List(Uint8List.fromList(<int>[0xED, 0, 0, 0xFF])),
    width: 1, height: 1, pixelFormat: ui.PixelFormat.rgba8888);
  final ui.Image image = (await (await descriptor.instantiateCodec()).getNextFrame()).image;
  final Uint8List resultPixels = Uint8List.sublistView(
    (await image.toByteData(format: ui.ImageByteFormat.rawStraightRgba))!);
  return resultPixels[0] == 0xED;
})();

Future<ui.Image> parseMyImage(Uint8List image, int width, int height) async {
  final Uint8List correctedImage = (await imageRawUsesCorrectBehavior) ?
    verticallyFlipImage(image, width, height) : image;
  final ui.ImageDescriptor descriptor = ui.ImageDescriptor.raw(
    await ui.ImmutableBuffer.fromUint8List(correctedImage), // Use the corrected image
    width: width,
    height: height,
    pixelFormat: ui.PixelFormat.bgra8888, // Use the alternate format
  );
  return (await (await descriptor.instantiateCodec()).getNextFrame()).image;
}

時程

#

合併於版本:2.9.0-0.0.pre
穩定版釋出:2.10

參考資料

#

API 文件:

相關議題:

相關 PR: