旋转base64字符串Nativescript-Vue

问题描述 投票:1回答:1

我想将图像旋转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");

这不起作用。我怎样才能解决这个问题?

image vue.js rotation base64 nativescript
1个回答
0
投票

如果可以的话,我建议在CSS中旋转图像:

.myBtn {
  transform: rotate(15deg);
}
© www.soinside.com 2019 - 2024. All rights reserved.