Yingtao Guo

Results 39 comments of Yingtao Guo

@VOTONO Finally I got a chance to address this issue by adding some new APIs. Now you can use Manits.chooseLanguage() to set a new language without restarting app and use...

I think the latest Mantis supports this feature. Since no response from last August, I close this ticket for now.

@roddymunro I know this issue has been here for a long time. Now when I check it again, I think there might not be many people having this requirement. Also...

Hi @7blueXY I released Mantis 2.9.1 which add more guard logics for this issue. Can you have a try to see if it solves the issue? Thanks!

@7blueXY Has the new version solved the issue?

```Swift func CATransform3DMakePerspective(_ x: CGFloat, _ y: CGFloat) -> CATransform3D { var transform = CATransform3DIdentity transform.m34 = -1.0 / 1000.0 transform = CATransform3DRotate(transform, y, 1, 0, 0) transform = CATransform3DRotate(transform,...

```Swift @objc func handleSliderValueChanged(_ slider: UISlider) { let value = CGFloat(slider.value) let inputImage = CIImage(image: imageView.image!) // Calculate the perspective correction values let inputWidth = inputImage.extent.width let inputHeight = inputImage.extent.height...

Made a little bit progress with the code below ```Swift var transform = CATransform3DIdentity transform.m34 = -1.0 / 500.0 transform = CATransform3DRotate(transform, totalRadians, 1, 0, 0) cropWorkbenchView.layer.transform = transform ```...

@Karllas I haven't found a good way to build this feature yet, so I have no plans to finish it in the near future.

@rickshane Thanks for the suggestion! The challenging part is when rotating the image, how to adjust cropBox for 3d space. I haven't figured it out yet. ## Update It is...