Hi All,
Maybe this is a silly question, i'm getting blurry/distorted images when appending images to CSBuilder.
I use the resize function on initialize bitmap to adjust images before adding them to the builder.
I'm using the code on this post to perform the append image: https://www.b4x.com/android/forum/threads/csbuilder-size-appendimage.87211/#post-552019
My Code is like this:
I've tried BBcodeView and works better and images are displayed fine, the problem is that i need the Click event that has the label control, and in BBCodeView i dont have a click event for the tag, only for URL text, and that dont work for me.
Is there a way to make it work for the Csbuilder?
Am I doing something wrong?
Many thanks all in advance!
Maybe this is a silly question, i'm getting blurry/distorted images when appending images to CSBuilder.
I use the resize function on initialize bitmap to adjust images before adding them to the builder.
I'm using the code on this post to perform the append image: https://www.b4x.com/android/forum/threads/csbuilder-size-appendimage.87211/#post-552019
My Code is like this:
cs:
dim cs1 as csbuilder
cs1.Initialize
CallSub3(Starter,"AppendImage",cs1,LoadBitmapResize(File.DirAssets,"ame1.png",20dip,20dip,True))'here i call the function from a central code module
'... Here sometimes is added more images in a row, thats why i use csbuilder, and in B4A works fine
cs1.PopAll
Label1.AttributedText=cs1
I've tried BBcodeView and works better and images are displayed fine, the problem is that i need the Click event that has the label control, and in BBCodeView i dont have a click event for the tag, only for URL text, and that dont work for me.
Is there a way to make it work for the Csbuilder?
Am I doing something wrong?
Many thanks all in advance!