Beispiel #1
0
 public Image(ImageInfo imginfo, IImagePixels imgpixels)
 {
     Info   = imginfo;
     Pixels = imgpixels;
 }
Beispiel #2
0
 /// <summary>
 /// Protected constructor. Prevents creation of a LinearMemoryImage, unless through derivation.
 /// </summary>
 protected LinearMemoryImage(ImageInfo info, IntPtr memaddr, uint subimgs, IImagePixels pixels) : base(info, pixels)
 {
     m_MemoryAddress = memaddr; m_SubImages = subimgs;
 }