旋转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的主要内容,如果未能解决你的问题,请参考以下文章

javaScript旋转Base64图片并得到新的base64数据

编码为旋转 90 度的 base64 图像后

如何旋转base64图像并将其保存为角度2或以上?

画布旋转功能创建空白图像

vue 移动端拍照压缩base64格式上传

让你彻底理解Base64算法(Base64是什么,Base64解决什么问题,Base64字符串末尾的=是什么)