Class ImageBuffer
Implements
System.Collections.Generic.IDictionary<System.String, Bitmap>
System.Collections.IEnumerable
System.IDisposable
Inherited Members
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.IDictionary.get_Item(System.Object)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.IDictionary.set_Item(System.Object, System.Object)
System.Collections.Generic.Dictionary<System.String, Bitmap>.GetEnumerator()
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, Bitmap>>.Add(System.Collections.Generic.KeyValuePair<System.String, Bitmap>)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, Bitmap>>.Contains(System.Collections.Generic.KeyValuePair<System.String, Bitmap>)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, Bitmap>>.CopyTo(System.Collections.Generic.KeyValuePair<System.String, Bitmap>[], System.Int32)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, Bitmap>>.Remove(System.Collections.Generic.KeyValuePair<System.String, Bitmap>)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.String, Bitmap>>.GetEnumerator()
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.IDictionary.Add(System.Object, System.Object)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.IDictionary.Contains(System.Object)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.IDictionary.Remove(System.Object)
System.Collections.Generic.Dictionary<System.String, Bitmap>.TrimExcess(System.Int32)
System.Collections.Generic.Dictionary<System.String, Bitmap>.TryGetValue(System.String, Bitmap)
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String, Bitmap>>.IsReadOnly
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.IDictionary<System.String, Bitmap>.Keys
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.IDictionary<System.String, Bitmap>.Values
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.IReadOnlyDictionary<System.String, Bitmap>.Keys
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.Generic.IReadOnlyDictionary<System.String, Bitmap>.Values
System.Collections.Generic.Dictionary<System.String, Bitmap>.System.Collections.IDictionary.Item[System.Object]
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Svg.FilterEffects
Assembly: Svg.dll
Syntax
public class ImageBuffer : Dictionary<string, Bitmap>, IDictionary<string, Bitmap>, ICollection<KeyValuePair<string, Bitmap>>, IReadOnlyDictionary<string, Bitmap>, IReadOnlyCollection<KeyValuePair<string, Bitmap>>, IEnumerable<KeyValuePair<string, Bitmap>>, IDictionary, ICollection, IEnumerable, IDeserializationCallback, ISerializable, IDisposable
Constructors
| Improve this Doc View SourceImageBuffer(RectangleF, Single, ISvgRenderer, Action<ISvgRenderer>)
Declaration
public ImageBuffer(RectangleF bounds, float inflate, ISvgRenderer renderer, Action<ISvgRenderer> renderMethod)
Parameters
| Type | Name | Description |
|---|---|---|
| RectangleF | bounds | |
| Single | inflate | |
| ISvgRenderer | renderer | |
| Action<ISvgRenderer> | renderMethod |
Properties
| Improve this Doc View SourceBuffer
Declaration
public Bitmap Buffer { get; }
Property Value
| Type | Description |
|---|---|
| Bitmap |
Item[String]
Declaration
public Bitmap this[string key] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | key |
Property Value
| Type | Description |
|---|---|
| Bitmap |
Transform
Declaration
public Matrix Transform { get; set; }
Property Value
| Type | Description |
|---|---|
| Matrix |
Methods
| Improve this Doc View SourceAdd(String, Bitmap)
Declaration
public void Add(string key, Bitmap value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | key | |
| Bitmap | value |
Clear()
Declaration
public void Clear()
ContainsKey(String)
Declaration
public bool ContainsKey(string key)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | key |
Returns
| Type | Description |
|---|---|
| Boolean |
Dispose()
Declaration
public void Dispose()
Remove(String)
Declaration
public bool Remove(string key)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | key |
Returns
| Type | Description |
|---|---|
| Boolean |
TryGetValue(String, out Bitmap)
Declaration
public bool TryGetValue(string key, out Bitmap value)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | key | |
| Bitmap | value |
Returns
| Type | Description |
|---|---|
| Boolean |
Implements
System.Collections.Generic.IDictionary<TKey, TValue>
System.Collections.IEnumerable
System.IDisposable