Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    [Tutorial] Screenlogger


    Kvn'X
     Share

    Recommended Posts

    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

    Screenlogger Tutorial

    Nicht fuer Biene Majas O.o

    Beispiel, Download: Hier

    Beispiel, Virustotal: Hier

     

     

    Als erstes erstellt ihr eine Form mit 1 Timer und 1 Picturebox,

    bei der Picturebox:

    SizeMode: StretchImage

     

    Beim Timer:

    Enabled: True
    Interval, so wie man will;)

     

    Die Funktionen deklinieren. (im Timer)

    		Dim bounds As Rectangle
    	Dim screenshot As System.Drawing.Bitmap
    	Dim graph As Graphics

    Screenshot erstellen (im Timer)

    		bounds = Screen.PrimaryScreen.Bounds
    	screenshot = New System.Drawing.Bitmap(bounds.Width, bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppRgb)
    	graph = Graphics.FromImage(screenshot)
    	graph.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size, CopyPixelOperation.SourceCopy)
    	PictureBox1.Image = screenshot

    Bild Speichern (im Timer)

    		PictureBox1.Image.Save("test.JPG", System.Drawing.Imaging.ImageFormat.Jpeg)

    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

    ERWEITERT

    So nun kann man noch wenn man immer verschiedene Bildernamen haben will eine Label erstellen mit der text = "0"

    dann fuegt man im timer 1 ein als code:

     Label1.Text = Label1.Text + 1

     

    Daraufhin schreibt man beim part Bild speichern:

    Bild Speichern (im Timer)

    		PictureBox1.Image.Save("test" & Label1.Text & ".JPG", System.Drawing.Imaging.ImageFormat.Jpeg)

     

    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

    GANZER CODE

    	Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    	Dim bounds As Rectangle
    	Dim screenshot As System.Drawing.Bitmap
    	Dim graph As Graphics
    	bounds = Screen.PrimaryScreen.Bounds
    
    	screenshot = New System.Drawing.Bitmap(bounds.Width, bounds.Height, System.Drawing.Imaging.PixelFormat.Format32bppRgb)
    	graph = Graphics.FromImage(screenshot)
    	graph.CopyFromScreen(bounds.X, bounds.Y, 0, 0, bounds.Size, CopyPixelOperation.SourceCopy)
    	PictureBox1.Image = screenshot
    	PictureBox1.Image.Save("test" & Label1.Text & ".JPG" , System.Drawing.Imaging.ImageFormat.Jpeg)
    	Label1.Text = Label1.Text + 1
    End Sub

    Edited by paTTax
    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...