Firstly, please run your code in the android emulator, will you get the same issue?
How did you bind the stream to image? I use following code and android 11 emulator, it is working without any issue.myImage.Source = ImageSource.FromStream(()=>rotatedStream);
.
And please make sure you have installed following nugget packages in your project.
<ItemGroup>
<PackageReference Include="SkiaSharp" Version="2.88.3" />
<PackageReference Include="SkiaSharp.Views.Maui.Controls" Version="2.88.3" />
<PackageReference Include="SkiaSharp.Views.Maui.Controls.Compatibility" Version="2.88.3" />
<PackageReference Include="SkiaSharp.Views.Maui.Core" Version="2.88.3" />
</ItemGroup>