- Home
·
- Graphics
·
- Filters the graphics in your picture box into grayscaled, raw pixel
Filters the graphics in your picture box into grayscaled, raw pixel
Filters the graphics in your picture box into grayscaled, raw pixel
Rate Filters the graphics in your picture box into grayscaled, raw pixel
(1(1 Vote))
'with the same size, one as the source picture,
'another as the destination picture.
Private Sub Filterize()
picboxDestination.Cls
For i = 0 To picboxSource.Width Step 20
For j = 0 To picboxSource.Height Step 20
If frmBitmap.picCopy.Point(i, j) <= 10264220 Then
' u can edit the value of 10264220 to the color filter that u want
picboxDestination.DrawWidth = 5
picboxDestination.PSet (i, j)
End If
Next j
Next i
End Sub
Filters the graphics in your picture box into grayscaled, raw pixel Comments
No comments yet — be the first to post one!
Post a Comment