Create a tiler.


Namespace: nom.tam.image
Assembly: CSharpFITS_v1.1 (in CSharpFITS_v1.1.dll)

Syntax

Visual Basic (Declaration)
Public Sub New( _ 
   ByVal f As RandomAccess,  _ 
   ByVal fileOffset As Long,  _ 
   ByVal dims As Integer(),  _ 
   ByVal base_Renamed As Type _ 
)
C#
public ImageTiler(
   RandomAccess f,
   long fileOffset,
   int[] dims,
   Type base_Renamed
)
C++
public:
 ImageTiler(
   RandomAccess f,
   __int64 fileOffset,
   array<int>^ dims,
   Type base_Renamed
) sealed 
J#
public ImageTiler(
   RandomAccess f,
   long fileOffset,
   int[] dims,
   Type base_Renamed
)
JScript
public function ImageTiler(
   f : RandomAccess,
   fileOffset : long,
   dims : int[],
   base_Renamed : Type
)

Parameters

f
The random access device from which image data may be read. This may be null if the tile information is available from memory.
fileOffset
The file offset within the RandomAccess device at which the data begins.
dims
The actual dimensions of the image.
base_Renamed
base class (should be a primitive type) of the image.

See Also