當前位置: 首頁>>代碼示例>>C#>>正文


C# ZDeflaterOutputStream.Close方法代碼示例

本文整理匯總了C#中System.util.zlib.ZDeflaterOutputStream.Close方法的典型用法代碼示例。如果您正苦於以下問題:C# ZDeflaterOutputStream.Close方法的具體用法?C# ZDeflaterOutputStream.Close怎麽用?C# ZDeflaterOutputStream.Close使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在System.util.zlib.ZDeflaterOutputStream的用法示例。


在下文中一共展示了ZDeflaterOutputStream.Close方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: WriteData

 virtual public void WriteData(byte[] data, int stride) {
     MemoryStream stream = new MemoryStream();
     ZDeflaterOutputStream zip = new ZDeflaterOutputStream(stream, 5);
     int k;
     for (k = 0; k < data.Length - stride; k += stride) {
         zip.WriteByte(0);
         zip.Write(data, k, stride);
     }
     int remaining = data.Length - k;
     if (remaining > 0){
         zip.WriteByte(0);
         zip.Write(data, k, remaining);
     }
     zip.Close();
     WriteChunk(IDAT, stream.ToArray());
 }
開發者ID:jagruti23,項目名稱:itextsharp,代碼行數:16,代碼來源:PngWriter.cs

示例2: PRStream

 /**
  * Creates a new PDF stream object that will replace a stream
  * in a existing PDF file.
  * @param   reader  the reader that holds the existing PDF
  * @param   conts   the new content
  * @param   compressionLevel    the compression level for the content
  * @since   2.1.3 (replacing the existing constructor without param compressionLevel)
  */
 public PRStream(PdfReader reader, byte[] conts, int compressionLevel) {
     this.reader = reader;
     this.offset = -1;
     if (Document.Compress) {
         MemoryStream stream = new MemoryStream();
         ZDeflaterOutputStream zip = new ZDeflaterOutputStream(stream, compressionLevel);
         zip.Write(conts, 0, conts.Length);
         zip.Close();
         bytes = stream.ToArray();
         Put(PdfName.FILTER, PdfName.FLATEDECODE);
     }
     else
         bytes = conts;
     Length = bytes.Length;
 }
開發者ID:Niladri24dutta,項目名稱:itextsharp,代碼行數:23,代碼來源:PRStream.cs

示例3: WriteIccProfile

 virtual public void WriteIccProfile(byte[] data) {
     MemoryStream stream = new MemoryStream();
     stream.WriteByte((byte)'I');
     stream.WriteByte((byte)'C');
     stream.WriteByte((byte)'C');
     stream.WriteByte(0);
     stream.WriteByte(0);
     ZDeflaterOutputStream zip = new ZDeflaterOutputStream(stream, 5);
     zip.Write(data, 0, data.Length);
     zip.Close();
     WriteChunk(iCCP, stream.ToArray());
 }
開發者ID:jagruti23,項目名稱:itextsharp,代碼行數:12,代碼來源:PngWriter.cs

示例4: SetData

 /**
  * Sets the data associated with the stream, either compressed or
  * uncompressed. Note that the data will never be compressed if
  * Document.compress is set to false.
  * 
  * @param data raw data, decrypted and uncompressed.
  * @param compress true if you want the stream to be compresssed.
  * @param compressionLevel  a value between -1 and 9 (ignored if compress == false)
  * @since   iText 2.1.3
  */
 virtual public void SetData(byte[] data, bool compress, int compressionLevel) {
     Remove(PdfName.FILTER);
     this.offset = -1;
     if (Document.Compress && compress) {
         MemoryStream stream = new MemoryStream();
         ZDeflaterOutputStream zip = new ZDeflaterOutputStream(stream, compressionLevel);
         zip.Write(data, 0, data.Length);
         zip.Close();
         bytes = stream.ToArray();
         this.compressionLevel = compressionLevel;
         Put(PdfName.FILTER, PdfName.FLATEDECODE);
     }
     else
         bytes = data;
     Length = bytes.Length;
 }
開發者ID:Niladri24dutta,項目名稱:itextsharp,代碼行數:26,代碼來源:PRStream.cs


注:本文中的System.util.zlib.ZDeflaterOutputStream.Close方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。