تفضل
PHP كود :
axVLCPlugin21.playlist.togglePause();
String tempPath = Path.GetTempPath();
string imgPath = tempPath + @"Captured.jpg";
Bitmap bmpScreenshot = new Bitmap(axVLCPlugin21.ClientRectangle.Width,axVLCPlugin21.ClientRectangle.Height);
Graphics gfxScreenshot = Graphics.FromImage(bmpScreenshot);
System.Drawing.Size imgSize = new System.Drawing.Size(axVLCPlugin21.ClientRectangle.Width,axVLCPlugin21.ClientRectangle.Height);
Point ps = PointToScreen(new Point(axVLCPlugin21.Bounds.X, axVLCPlugin21.Bounds.Y));
gfxScreenshot.CopyFromScreen(ps.X, ps.Y, 0, 0, imgSize, CopyPixelOperation.SourceCopy);
bmpScreenshot.Save(imgPath, System.Drawing.Imaging.ImageFormat.Jpeg);
MessageBox.Show("Image saved : " + imgPath);
pictureBox1.Image = bmpScreenshot;
axVLCPlugin21.playlist.togglePause();
موفق ان شاء الله
