deflatestream Questions
6
Solved
I would like to be able to read the Dynamics NAV 2013 Table Metadata directly from the SQL Server database without requiring the NAV Development Environment.
I can view the binary SQL "image" BLOB...
Threeply asked 19/1, 2014 at 22:55
3
Solved
I have a TcpClient class on a client and server setup on my local machine. I have been using the Network stream to facilitate communications back and forth between the 2 successfully.
Moving forwa...
Determined asked 17/2, 2016 at 15:7
2
I'm trying to compress some data in mono like this:
public static string Save(FlightProgram program, bool compressed)
{
using (MemoryStream ms = new MemoryStream())
{
BinaryFormatter f = new Bi...
Dennisedennison asked 30/10, 2014 at 20:22
1
Solved
I'm playing around with the ability to create pdf files through C# code. I have been looking at the PDF specifications and have been able to create a working PDF file, done by taking strings of dat...
Uniaxial asked 26/8, 2013 at 18:10
5
Solved
I'm trying to use deflate/gzip streams in C# but it appears that the files after compression are bigger than before.
For example, I compress a docx file of 900ko, but it produce a 1.4Mo one !
And...
Sadler asked 5/10, 2010 at 13:27
1
Solved
So here's a strange one. I have this method to take a Base64-encoded deflated string and return the original data:
public static string Base64Decompress(string base64data)
{
byte[] b = Convert.Fr...
Decision asked 11/11, 2010 at 20:27
1
Solved
I need to zip and unzip string
Here is code:
public static byte[] ZipStr(String str)
{
using (MemoryStream output = new MemoryStream())
using (DeflateStream gzip = new DeflateStream(output, Co...
Lamartine asked 22/1, 2010 at 16:55
1
© 2022 - 2024 — McMap. All rights reserved.