bi0s Geschrieben 4. Juli 2008 Geschrieben 4. Juli 2008 Tag zusammen, ich baue mir gerade ein kleines Programm, dies soll eine Screenshot funktion beinhalten. Er soll aber nur ein Screenshot vom aktuellem Aktivem Fenster machen.. Sprich GetForegroundWindow().. Da bekomme ich die ID vom Prozess wieder, jetzt müsste ich der screenshot funktion nurnoch sagen welche x,y werte das aktive fenster hat, oder der funktion direkt sagen hey mach nur vom prozess x den screenshot.. Bitmap b = new Bitmap(SystemInformation.VirtualScreen.Width, SystemInformation.VirtualScreen.Height); Graphics g = Graphics.FromImage(; g.CopyFromScreen(0, 0, 0, 0, b.Size); g.Dispose(); Bitmap bmpOutput = new Bitmap(SystemInformation.VirtualScreen.Width, SystemInformation.VirtualScreen.Height, PixelFormat.Format24bppRgb); Graphics gOutput = Graphics.FromImage(bmpOutput); Rectangle rectOutput = new Rectangle(0, 0, bmpOutput.Width, bmpOutput.Height); ImageAttributes ia = new ImageAttributes(); ia.SetWrapMode(WrapMode.TileFlipXY); gOutput.InterpolationMode = InterpolationMode.HighQualityBilinear; gOutput.PixelOffsetMode = PixelOffsetMode.Half; gOutput.CompositingMode = CompositingMode.SourceCopy; gOutput.DrawImage(b, rectOutput, 0, 0, SystemInformation.VirtualScreen.Width, SystemInformation.VirtualScreen.Height, GraphicsUnit.Pixel, ia); bmpOutput.Save(BildNameOut, ImageFormat.Jpeg); [/code] Meine screenshot funktion.. Funktioniert soweit echt gut ! Nur macht sie halt einen screen vom ganzen Bildschirm und nicht nur vom aktivem fenster.. Kann mir da eventuell jemand weiter helfen ? Wäre wirklich klasse... Dankö, grüße Patrick
injac Geschrieben 16. Juli 2008 Geschrieben 16. Juli 2008 Hi, hier ein Beispiel, wie einfach ein Screenshot von einem Formular direkt aus dem jeweiligen Formular erstellt wird: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Screenshotme { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { CaptureScreen(); } /* AUS MSDN-BEISPIEL ENTNOMMEN */ Bitmap memoryImage; private void CaptureScreen() { Graphics myGraphics = this.CreateGraphics(); Size s = this.Size; memoryImage = new Bitmap(s.Width, s.Height, myGraphics); Graphics memoryGraphics = Graphics.FromImage(memoryImage); memoryGraphics.CopyFromScreen(this.Location.X, this.Location.Y, 0, 0, s); } } } Ansonsten gibt es hier noch eine gute Quelle: Capture-Screens
Empfohlene Beiträge
Erstelle ein Benutzerkonto oder melde Dich an, um zu kommentieren
Du musst ein Benutzerkonto haben, um einen Kommentar verfassen zu können
Benutzerkonto erstellen
Neues Benutzerkonto für unsere Community erstellen. Es ist einfach!
Neues Benutzerkonto erstellenAnmelden
Du hast bereits ein Benutzerkonto? Melde Dich hier an.
Jetzt anmelden