Ok,
Sinon je pensais à DirectX ou DirectDraw, je m'y connait pas trop la mais c'est peut être la solution. Le but ca serait un fps à environ 15
Public Delegate Sub NewEcran( ByVal img As Image)
Private Sub NouvelleImage( ByVal img As Image) Handles Inter.NewImg
If Me .PbOutIn.InvokeRequired Then
Dim d As New NewEcran( AddressOf ApplyEcran)
Me .PbOutIn.Invoke(d, img)
Else
ApplyEcran(img)
End If
End Sub
Public Sub ApplyEcran( ByVal img As Image)
Me .PbOutIn.Image = img
Inter.GetEcran() '(va chercher la nouvelle image disponible)
End Sub