B4A Library [B4X] BytesBuilder - simplifies working with arrays of bytes - Erel    Oct 13, 2019   (42 reactions) Edit: BytesBuilder is included in B4XCollections library (named B4XBytesBuilder).
BytesBuilder class, which is compatible with B4A, B4i and B4J, makes it easier to work with bytes.
You can think of it as a combination of String and StringBuilder, but instead of holding characters it holds bytes.
M B4A Library [B4X] QRGenerator - Cross platform QR code generator - Erel    Apr 26, 2020   (47 reactions) QRGenerator is a class that generates QR codes.
It is written in B4X and it is compatible with B4A, B4i and B4J.
iPhone default camera app recognizing the QR code displayed in a B4A app:
https://www.b4x.com/basic4android/images/SS-2018-05-16_18.56.16.jpg
Can create codes made of up to 2953 bytes. B4A Code Snippet [B4X] Bytes To File - Erel    May 24, 2020   (19 reactions) This code is no longer needed. Use File.WriteBytes / ReadBytes.
Write an array of bytes to a file and read a file into an array of bytes.
Sub BytesToFile (Dir As String, FileName As String, Data() As Byte)
Dim out As OutputStream = File.OpenOutput(Dir, FileName, False)
out.WriteBytes(Data, B4A Library [B4X] B4XCollections - More collections - drgottjr (first post)    May 25, 2020   (1 reaction) bytesbuilder or B4Xbytesbuilder ? the latter has replaced the former. B4A Library [B4X] [class] MJPEG decoder - Erel    Jul 09, 2018   (14 reactions) The attached class is an implementation of a MJPEG over Http decoder. The data is a mix of strings and raw bytes. It is tempting to convert the bytes to a string. However raw bytes do not represent a valid string so you can lose important information during the conversion (which will also slow down B4A Question how to create dynamic variables - Erel (first post)    Jun 03, 2018   (1 reaction) Use BytesBuilder: BytesBuilder - simplifies working with arrays of bytes B4A Question HC-06 Bluetooth Async Buffer - Erel (first post)    Oct 03, 2018 Sorry it is BytesBuilder.
BytesBuilder - simplifies working with arrays of bytes
https://www.b4x./?query=BytesBuilder B4J Question Regex.Split with control characters? - Erel (first post)    Jul 27, 2018   (1 reaction) The "correct" solution is to use BytesBuilder. It will make it simple to collect the bytes until you find a full message. B4A Question Random Access file data - MicroDrie (first post)    May 06, 2024 Maybe you can simplify things by using BytesBuilder - simplifies working with arrays of bytes library. B4A Question bit in array - Erel (first post)    Jan 07, 2019 Your best option is: BytesBuilder - simplifies working with arrays of bytes Page: 1   2   3   4   5   6   7   Powered by ColBERT |