How to use RSImageProcessing

Theera

Well-Known Member
Licensed User
Longtime User
Hi all,
I download RSImageProcessing Library from RSImageProcessingFixed.zip and exact all and then paste xml file and jar file into B4A's Libraries. and use example from RSImageProcessing.zip as RSImageProcessing.b4a and addition some code (mnuScaleBMP) to test as attached file. It has error occurred. Please help me to correct them.

Best Regards
Theera
 
Last edited:

awama

Active Member
Licensed User
Longtime User
Upvote 0

Theera

Well-Known Member
Licensed User
Longtime User
How to resize of picture?

Hi awama,all
Thank you awama for help. I need know that how to resize of picture?
I 'm not sure that RSImageProcessing Library could help me.

Best Regards
Theera
 
Upvote 0

mkvidyashankar

Active Member
Licensed User
Longtime User
Contrast function converts color image to bw image

Hi

I tried to change the contrast of the bitmap using
B4X:
Sub Button_contrastplus_Click
   bitmap2=ii.Contrast(bitmap2,10)
   imageview1.bitmap = bitmap2
End Sub
Sub Button_contrastminus_Click
   bitmap2=ii.Contrast(bitmap2,-10)
   imageview1.bitmap = bitmap2
End Sub

but instead of changing contrast the whole bitmap changed to Grayscale image

any solutions?

Thanks in advance
 
Upvote 0
Top