从没有位图的URI旋转图像?

时间:2017-10-26 18:24:25

标签: java android image

如果你将URI应用到位图并旋转它,我找到了如何旋转图片的解决方案,但我使用的是需要保持分辨率的非常大的图片,但如果我尝试使用位图并应用那些我得到的OutofMemory错误很快。

那么有没有一种方法可以在没有位图的情况下进行,或者我被卡住了?

1 个答案:

答案 0 :(得分:0)

如果您只需要在ImageView中显示旋转的图片,请尝试使用其rotation属性。

例如,如果要将图像上下颠倒显示给用户,请下载图像并将其设置在ImageView上。 ImageView可能是这样的。

<ImageView
    android:id="@+id/iv_upsidedown"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:rotation="180"/>

生成的图像会颠倒过来。