Dim jo As JavaObject = ImageView2
jo.RunMethod("setSmooth",Array(False))
ImageView1.SetImage(Label1.Snapshot)
ImageView2.SetImage(Label1.Snapshot)
Dim view As B4XView = ImageView2
view.Rotation = -10
I think it is inevitable that the text will become blurry after rotation because the image is resampled. The image has to be upscaled before rotation to solve the blurry problem.
But also with a truly horizontal or vertical line the character edge can be a transition between "fully on" and "fully off" pixels. If you want sloped text lines then you either retain fully on/off pixels and create a "stepped" effect, or you use partially coloured (antialiased) pixels which is what I think you are describibg as "blurry". Surely sloped text will always be less sharp overall than horizontal text.