'DeclarationPublic Overloads Sub Import( _ ByVal Image As System.Drawing.Image _ )
public void Import( System.Drawing.Image Image )
Parameters
- Image
- The image to import
'DeclarationPublic Overloads Sub Import( _ ByVal Image As System.Drawing.Image _ )
public void Import( System.Drawing.Image Image )
Like the Paste method, this method modifies only the minimum number of attributes necessary to ensure consistency of the image. In order to produce a valid DICOM SOP instance, many other attributes (depending on the SOP class) must be added.
A multiframe image is created if the input data is a multipage Image
DicomImage image = new DicomImage(); Image externalImage = Image.FromFile("your_external_image_format_image.bmp"); image.Import(externalImage);