Android Question Realname library

rkxo

Active Member
Licensed User
Longtime User
Hello there,
I don't know why some b4a libraries have been deleted on my pc. Now I can't find the real name of the libraries.I have looked for them in the forum and I cannot find them How can I find it?. Does anyone know the real name of these?
[IDE message - 9:10:16]
The following libraries are missing:
arimagecompressor
simcard
libtoasty

thanks
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
Does anyone know the real name of these?
arimagecompressor -> arimagecompressor
simcard -> simcard
jstouchimageview -> jstouchimageview
uiutils -> uiutils
libtoasty -> libtoasty
gifdecoder -> gifdecoder

You probably find them using the forumsearch.
 
Upvote 0

rkxo

Active Member
Licensed User
Longtime User
Hi,
yes , but no exists. I search it in forumsearch but not appears nothing.
It would be nice to have in the library menu a download option for the missing libraries

thanks
 
Upvote 0

rkxo

Active Member
Licensed User
Longtime User
yes jtousch,uiutils, its true but arimagecompressor,simcard,gifdecoder and libtoasty i can't find.
 
Upvote 0

rkxo

Active Member
Licensed User
Longtime User
Thank you very much . I have problems with the arimagecompressor is not exactly this library.
the others work perfectly.


In correct library appears this function. and with this library arimagecompressor: https://www.b4x.com/android/forum/threads/convert-compress-image-webp-jpg-png.130827/ not appears.


Functions correct library:
  Dim compressor As ARImageCompressor

                Dim out As OutputStream

                out = File.OpenOutput(Main.ruta, "TestThumb.jpg", False)

                thum.WriteToStream(out, 5, "PNG")

                out.Close

                Log("Original:"& File.Size(Main.ruta, "TestThumb.jpg"))

                compressor.Initialize.setCompressFormat(compressor.WEBP)

                compressor.setDestinationDirectoryPath(File.Combine(Main.Ruta,"compress"))

                compressor.setQuality(2)

                compressor.setMaxHeight(40).setMaxWidth(40)

                compressor.compressToFile2(File.Combine(Main.Ruta,"TestThumb.jpg"),"sampleTh.jpg")
 
Upvote 0
Top