¿Por qué tarda tanto?
Publicado por Carlos (23 intervenciones) el 10/03/2018 23:25:47
Tengo esta sub y el problema es que cuando entra ahí se ralentiza muchísimo la ejecución y no acaba nunca. No es problema que el tamaño del bitmap sea excesivo puesto que, como se ve, sólo tiene un tamaño de 650 * 70 píxeles.
Saludos
1
2
3
4
5
6
7
8
9
10
Public Sub conteo()
Dim bmp As New Bitmap(650, 70)
Dim x As Int16, y As Int16
For y = 0 To bmp.Height - 1
For x = 0 To bmp.Width - 1
TextBox1.Text = TextBox1.Text & bmp.GetPixel(x, y).ToString
Me.Label1.Text = Str(x) & ", " & Str(y)
Next x, y
End Sub
Saludos
Valora esta pregunta
0