<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'>
<pre style="font-family: 'Times New Roman'; font-size: 12pt; ">The parameter is not valid is the error that I get.</pre><pre style="font-family: 'Times New Roman'; font-size: 12pt; ">I use an adaptation of the source .cs code in VB.NET.</pre><pre style="font-family: 'Times New Roman'; font-size: 12pt; ">Here is part of the code:</pre><pre><span class="Apple-style-span" style="font-size: 21px;"><br></span></pre><pre><font class="Apple-style-span" size="4">        Dim pixelFormat As PixelFormat</font></pre><pre><font class="Apple-style-span" size="4"><span class="Apple-tab-span" style="white-space:pre">        </span>Dim dataType As DataType
        Dim pixelSpace As Integer

        If isIndexed Then
            pixelFormat = PixelFormat.Format8bppIndexed
            dataType = DataType.GDT_Byte
            pixelSpace = 1
        Else
            If channelCount = 1 Then
                If channelSize &gt; 8 Then
                    pixelFormat = PixelFormat.Format16bppGrayScale
                    dataType = DataType.GDT_Int16
                    pixelSpace = 2
                Else
                    pixelFormat = PixelFormat.Format24bppRgb
                    channelCount = 3
                    dataType = DataType.GDT_Byte
                    pixelSpace = 3
                End If
            Else
                If hasAlpha Then
                    If channelSize &gt; 8 Then
                        pixelFormat = PixelFormat.Format64bppArgb
                        dataType = DataType.GDT_UInt16
                        pixelSpace = 8
                    Else
                        pixelFormat = PixelFormat.Format32bppArgb
                        dataType = DataType.GDT_Byte
                        pixelSpace = 4
                    End If
                    channelCount = 4
                Else
                    If channelSize &gt; 8 Then
                        pixelFormat = PixelFormat.Format48bppRgb
                        dataType = DataType.GDT_UInt16
                        pixelSpace = 6
                    Else
                        pixelFormat = PixelFormat.Format24bppRgb
                        dataType = DataType.GDT_Byte
                        pixelSpace = 3
                    End If
                    channelCount = 3
                End If
            End If
        End If

<b><span class="Apple-style-span" style="font-weight: normal; "><b><span class="Apple-style-span" style="font-family: 'Times New Roman'; font-weight: normal; white-space: normal; font-size: medium; "><pre style="text-indent: 0px !important; font-family: 'Times New Roman'; font-size: 12pt; display: inline !important; ">And the Error is in the following line:</pre></span></b></span></b></font></pre><pre><font class="Apple-style-span" size="4">
Dim bitmap As New Bitmap(imageWidth, imageHeight, pixelFormat__1)</font></pre><pre><font class="Apple-style-span" size="4"><br></font></pre><pre><font class="Apple-style-span" size="4"><font class="Apple-style-span" face="'Times New Roman'">Is possible to read the dataset and write to a bitmap or picturebox without save as file?</font></font></pre><pre><font class="Apple-style-span" size="4"><font class="Apple-style-span" face="'Times New Roman'"><br></font></font></pre><pre><font class="Apple-style-span" size="4">Thanks for your reply.</font></pre><pre><font class="Apple-style-span" size="4"><br></font></pre><pre><font class="Apple-style-span" size="4">Francisco J.</font></pre><pre><font class="Apple-style-span" size="4"><br></font></pre><pre><font class="Apple-style-span" size="4"><br></font></pre><pre style="font-family: 'Times New Roman'; font-size: 12pt; ">2011/4/19 Francisco José Reyes Peralta &lt;<a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev">gistdt08 at hotmail.es</a>&gt;

&gt;<i>  Dear friends, I'm vieweing the *GDALDatasetRasterIO.cs* from the Csharp
</i>&gt;<i> samples of GDAL and I'm getting an error in the following line *Bitmap
</i>&gt;<i> bitmap = new Bitmap(imageWidth, imageHeight, pixelFormat);* In the *
</i>&gt;<i> pixelFormat* argument.
</i>&gt;<i>
</i>
Hi,

What is the error message specifically?

Best regards,

Tamas
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <a href="http://lists.osgeo.org/pipermail/gdal-dev/attachments/20110419/cc8baab2/attachment-0001.html">http://lists.osgeo.org/pipermail/gdal-dev/attachments/20110419/cc8baab2/attachment-0001.html</a></pre>                                               </body>
</html>