ImageResizer  3.4.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events
Namespaces | Classes | Enumerations
Package SevenZipReduced

Namespaces

package  Buffer
 
package  Compression
 

Classes

class  CRC
 
class  DataErrorException
 The exception that is thrown when an error in input stream occurs during decoding. More...
 
class  InvalidParamException
 The exception that is thrown when the value of an argument is outside the allowable range. More...
 
interface  ICodeProgress
 
interface  ICoder
 
interface  ISetCoderProperties
 
interface  IWriteCoderProperties
 
interface  ISetDecoderProperties
 

Enumerations

enum  CoderPropID {
  CoderPropID.DefaultProp = 0, CoderPropID.DictionarySize, CoderPropID.UsedMemorySize, CoderPropID.Order,
  CoderPropID.BlockSize, CoderPropID.PosStateBits, CoderPropID.LitContextBits, CoderPropID.LitPosBits,
  CoderPropID.NumFastBytes, CoderPropID.MatchFinder, CoderPropID.MatchFinderCycles, CoderPropID.NumPasses,
  CoderPropID.Algorithm, CoderPropID.NumThreads, CoderPropID.EndMarker
}
 Provides the fields that represent properties idenitifiers for compressing. More...
 

Enumeration Type Documentation

Provides the fields that represent properties idenitifiers for compressing.

Enumerator
DefaultProp 

Specifies default property.

DictionarySize 

Specifies size of dictionary.

UsedMemorySize 

Specifies size of memory for PPM*.

Order 

Specifies order for PPM methods.

BlockSize 

Specifies Block Size.

PosStateBits 

Specifies number of postion state bits for LZMA (0 <= x <= 4).

LitContextBits 

Specifies number of literal context bits for LZMA (0 <= x <= 8).

LitPosBits 

Specifies number of literal position bits for LZMA (0 <= x <= 4).

NumFastBytes 

Specifies number of fast bytes for LZ*.

MatchFinder 

Specifies match finder. LZMA: "BT2", "BT4" or "BT4B".

MatchFinderCycles 

Specifies the number of match finder cyckes.

NumPasses 

Specifies number of passes.

Algorithm 

Specifies number of algorithm.

NumThreads 

Specifies the number of threads.

EndMarker 

Specifies mode with end marker.

Definition at line 78 of file ICoder.cs.

79  {
80  /// <summary>
81  /// Specifies default property.
82  /// </summary>
83  DefaultProp = 0,
84  /// <summary>
85  /// Specifies size of dictionary.
86  /// </summary>
88  /// <summary>
89  /// Specifies size of memory for PPM*.
90  /// </summary>
92  /// <summary>
93  /// Specifies order for PPM methods.
94  /// </summary>
95  Order,
96  /// <summary>
97  /// Specifies Block Size.
98  /// </summary>
99  BlockSize,
100  /// <summary>
101  /// Specifies number of postion state bits for LZMA (0 &lt;= x &lt;= 4).
102  /// </summary>
103  PosStateBits,
104  /// <summary>
105  /// Specifies number of literal context bits for LZMA (0 &lt;= x &lt;= 8).
106  /// </summary>
108  /// <summary>
109  /// Specifies number of literal position bits for LZMA (0 &lt;= x &lt;= 4).
110  /// </summary>
111  LitPosBits,
112  /// <summary>
113  /// Specifies number of fast bytes for LZ*.
114  /// </summary>
115  NumFastBytes,
116  /// <summary>
117  /// Specifies match finder. LZMA: "BT2", "BT4" or "BT4B".
118  /// </summary>
119  MatchFinder,
120  /// <summary>
121  /// Specifies the number of match finder cyckes.
122  /// </summary>
124  /// <summary>
125  /// Specifies number of passes.
126  /// </summary>
127  NumPasses,
128  /// <summary>
129  /// Specifies number of algorithm.
130  /// </summary>
131  Algorithm,
132  /// <summary>
133  /// Specifies the number of threads.
134  /// </summary>
135  NumThreads,
136  /// <summary>
137  /// Specifies mode with end marker.
138  /// </summary>
139  EndMarker
140  };
Specifies default property.
Specifies the number of threads.
Specifies order for PPM methods.
Specifies number of algorithm.
Specifies mode with end marker.
Specifies number of fast bytes for LZ*.
Specifies the number of match finder cyckes.
Specifies match finder. LZMA: &quot;BT2&quot;, &quot;BT4&quot; or &quot;BT4B&quot;.
Specifies Block Size.
Specifies number of passes.
Specifies size of memory for PPM*.
Specifies size of dictionary.