旋转base64字符串Nativescript-Vue
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了旋转base64字符串Nativescript-Vue相关的知识,希望对你有一定的参考价值。
我想将图像旋转90度。我正在使用Nativescript-Vue,图像具有base64字符串的形式。我尝试了以下方法:
let newImage = new Image();
let imgSource = new ImageSource();
imgSource.fromBase64(base64string);
imgSource.rotationAngle = 90;
newImage.imageSource = imgSource;
newImage.rotate;
let newBase64 = newImage.imageSource;toBase64String("jpg");
这不起作用。我怎样才能解决这个问题?
答案
如果可以的话,我建议在CSS中旋转图像:
.myBtn {
transform: rotate(15deg);
}
以上是关于旋转base64字符串Nativescript-Vue的主要内容,如果未能解决你的问题,请参考以下文章