| GMSE Imaging |
| gmse.Imaging.gmseBitmapCollection |
| Sub Save(FileName As String, ci As ImageCodecInfo) |
| Parameter |
| FileName |
| Filename to save the TIFF. |
| ci |
| ImageCodecInfo of type image/tiff. |
| Remarks |
The codec must be "image/tiff". You can use the following function to get the codec:
Public Function GetEncoderInfo(ByVal mimeType As String) As ImageCodecInfo Dim j As Integer Dim encoders() As ImageCodecInfo encoders = ImageCodecInfo.GetImageEncoders() For j = 0 To encoders.Length - 1 If encoders(j).MimeType = mimeType Then Return encoders(j) End If Next Return Nothing End Function |
|
|
| (c) GMSE GmbH 2006 |