How to download Base64 data partially from a web server and partially decode from encoded data?

My Base64 encoded data is very large and is not dynamically captured from the web server for every transaction. Therefore, I need to partially get the encoding data and partially decode the data with base64 encoding. Base64 encoded data is tiff image data.

To develop this function, I create one function in which all the basic 64-encoded data is partially downloaded from the web server and stored in a txt file. When all the data is stored in a txt file. then I start to decode the data partially and create a tiff image file.

Base64 encoded data is not partially saved (that is, it is not partially downloaded) and comes only once when traveling from a web server, and then partially base64 decrypts the work and successfully loads the tiff image.

But when the base64 base partially encodes the data (partially downloaded from the web server) and it takes more time to travel or cycle to load the data and store and partially base64 decodes, then the tiff image does not load ... does not work

0
source share
1 answer

I'm not sure if I understand your problem, but I will try:

+1

All Articles