Click or drag to resize

ResidentPixelMemory Class

This is a class used to represent PixelMemory that is resident and for which allocation and deallocation are controlled.
Inheritance Hierarchy
SystemObject
  Atalasoft.Imaging.MemoryPixelMemory
    Atalasoft.Imaging.MemoryResidentPixelMemory
      Atalasoft.Imaging.MemoryGlobalAllocPixelMemory

Namespace:  Atalasoft.Imaging.Memory
Assembly:  Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public abstract class ResidentPixelMemory : PixelMemory, 
	IDirectScanlineAccess

The ResidentPixelMemory type exposes the following members.

Constructors
  NameDescription
Public methodResidentPixelMemory(Int32, Int32, Int32)
Initializes a new instance of the ResidentPixelMemory class, total size in bytes is calculated by multiplying height and rowString and adding offsetToFirstScanline.
Public methodResidentPixelMemory(Int64, Int32, Int32, Int32)
Initializes a new instance of the ResidentPixelMemory class.
Top
Properties
  NameDescription
Public propertyDisposed
Indicates whether or the PixelMemory has been disposed.
(Inherited from PixelMemory.)
Public propertyHeight
Returns the height of the image represented.
(Inherited from PixelMemory.)
Public propertyIsContiguous
Returns true.
Public propertyCode exampleIsLocked
Indicates whether or not the PixelMemory is currently locked.
(Inherited from PixelMemory.)
Protected propertyLLPixelMemoryStart
Returns a pointer to the start of memory.
Protected propertyOffsetToFirstScanline
Returns an offset to the first scanline of the image.
Public propertyPixelData
Returns a pointer to the first scanline in the image.
Public propertyRowStride
Returns the number of bytes in a row of this image. The number is always rounded up to the next multiple of 4.
(Inherited from PixelMemory.)
Protected propertySizeInBytes
Returns the number of bytes used by the memory for this image.
Top
Methods
  NameDescription
Public methodAcquirePixelAccessor
Returns an object that inherits from PixelAccessor that is used to get to an image's pixel data.
(Inherited from PixelMemory.)
Protected methodAllocateMemory
Allocates memory for this PixelMemory object and reports it for tracking.
Public methodClone
Creates a deep copy of this image and its memory.
(Inherited from PixelMemory.)
Public methodDispose
Disposes this PixelMemory and all its managed and unmanaged resources.
(Inherited from PixelMemory.)
Protected methodDispose(Boolean)
Disposes this PixelMemory and all its managed and unmanaged resources.
(Inherited from PixelMemory.)
Protected methodDisposeManagedResources
Disposes any unmanaged resources.
(Overrides PixelMemoryDisposeManagedResources.)
Protected methodDisposeUnmanagedResources
Disposes the memory used by this object.
(Overrides PixelMemoryDisposeUnmanagedResources.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Finalizes an instance of the PixelMemory class.
(Inherited from PixelMemory.)
Protected methodFreeMemory
Frees memory.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetScanLinePtr
Gets a pointer to the a given scanline.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodLLAllocateMemory(Int32, Boolean) Obsolete.
Subclasses of ResidentPixelMemory implement this method to allocate memory.
Protected methodLLAllocateMemory(Int64, Boolean)
Subclasses of ResidentPixelMemory implement this method to allocate memory.
Protected methodLLClone
Subclasses of PixelMemory implement this method to create a deep copy of the object.
(Inherited from PixelMemory.)
Protected methodLLFreeMemory
Subclasses of ResidentPixelMemory implement this method to free memory.
Protected methodLLGetHeight
Returns the height of the image.
(Overrides PixelMemoryLLGetHeight.)
Protected methodLLGetPixelAccessor
Returns a suitable PixelAccesor object for this PixelMemory.
(Overrides PixelMemoryLLGetPixelAccessor.)
Protected methodLLGetRowStride
Returns the size of a scanline in bytes, rounded up to the next multiple of 4.
(Overrides PixelMemoryLLGetRowStride.)
Protected methodLLLock
Subclasses of PixelMemory implement this method to lock the memory.
(Inherited from PixelMemory.)
Protected methodLLUnlock
Subclasses of PixelMemory implement this method to unlock the memory.
(Inherited from PixelMemory.)
Public methodLock
Locks this instance of PixelMemory. For memory objects that are movable, this will prevent the PixelMemory from moving. Client code rarely needs to use this method.
(Inherited from PixelMemory.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodRerportMemoryAllocated
Rerports that memory was allocated.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodCode exampleUnlock (Inherited from PixelMemory.)
Top
See Also