DIZipWriter v6.5.0 for Delphi 10.3 Rio Cracked

DIZipWriter v6.5.0 for Delphi 10.3 Rio Cracked

DIZipWriter v6.5.0 for Delphi 10.3 Rio Cracked
DIZipWriter v6.5.0 for Delphi 10.3 Rio Cracked


DIZipWriter is a Delphi component to create PKZip-compatible ZIP archives. Archive output is based on TStream and writes directlyfiles (TFileStream), memory (TMemoryStream), or database BLOBs (TBlobStream).

Overview
DIZipWriter's functionality is contained in its main class, TDIZipWriter, with methods to create new ZIP archives and write various types of data like:

Files
Streams
Strings
Memory Buffers
DIZipWriter allows applications to write to an archive entry as many times as they seem necessary. This allows to create the new archive entry even before the first chunk of data is available. As data flows in (for example from a slow download), they can write it in small chunks at a time.

DIZipWriter outputs all data to the archive straight away, with no need for temporary storage: It does not create any temporary files and does not use huge amount of memory for buffering. It is nevertheless possible to create an archive entirely in memory if desired.

DIZipWriter stores a global archive comment as well as individual comments for each individual entry. Long file names are supported, just as absolute and relative path names.

Direct Streaming
Direct streaming allows objects to stream their data directly to a ZIP archive using their own SaveToStream() procedure:
// Save a TBitMap image to a ZIP archive.
 
// Create and initialize a bitmap image.
Img := TBitMap.Create;
// Add a new entry to the ZIP archive.
DIZipWriter.AddEntry('MyImage');
// Write the bitmap to the archive's entry stream.
Img.SaveToStream(DIZipWriter.CurrentEntryStream);
 
// Save a database BLOB to a ZIP archive.
MyBlob.SaveToStream(DIZipWriter.CurrentEntryStream);


Direct streaming is very efficient because its avoids all temporary storage of bitmap and BLOB data. Other ZIP writing libraries usually require this extra step and forece applications to touch object data at least twice: 1st for streaming it out and 2nd for reading it back. Omitting this extra step helps DIZipWriter to perform faster and uses less resources than the competition.

Advanced Encryption
Strong 256-bit AES encryption, a ZIP extension of WinZip 9, is available with DIZipWriter. WinZip 9 and later versions as well as 7-Zip starting from version 4.43 beta can open strong encryption archives created by DIZipWriter just like any ZIP file with standard or no encryption. The PKZip standard encryption is also supported, but considered weak and no longer recommended.

DIZipWriter 6.5.0 – 8 Oct 2019
Update the TYuBZip2Compressor compression engine to bzip2 1.0.8.
Improve DIUtils.pas Unicode processing to support Unicode Code Points from $000000 to $10FFFF. Adjust remaining source code accordingly.
Update DIUtils Unicode functions to Unicode 12.1.0.
Remove DI.inc include file. Directly link in DICompilers.inc instead.
Remove support for the DI_No_ZipWriter_Component compiler directive. TDIZipWriter always descend from TComponent. Source code only.
Remove support for the DI_No_Classes compiler directive. The Classes unit is always used. Source code only.
Rename DI_No_Range_Checking compiler directive to DIC_Unsafe. Source code only.


Only for V.I.P
Warning! You are not allowed to view this text.