downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

imagegrabwindow> <imagegif
Last updated: Fri, 13 Nov 2009

view this page in

imagegrabscreen

(PHP 5 >= 5.2.2)

imagegrabscreenEkran görüntüsünü yakalar

Açıklama

resource imagegrabscreen ( void )

Ekranın tamamının bir görüntüsünü yakalar.

Dönen Değerler

Hata oluşursa FALSE aksi takdirde bir resim tanıtıcısı ile döner.

Örnekler

Örnek 1 - imagegrabscreen() örneği

Bu örnekte ekran görüntüsünün nasıl alınıp bir PNG resmi olarak kaydedileceği gösterilmiştir.

<?php
$im 
imagegrabscreen();
imagepng($im"ekranım.png");
imagedestroy($im);
?>

Notlar

Bilginize: Bu işlev sadece Windows'ta kullanılabilmektedir.

Ayrıca Bakınız



add a note add a note User Contributed Notes
imagegrabscreen
andrew at local dot co dot nz
18-Apr-2008 11:02
For this to work your Apache service must be set to 'Allow service to interact with desktop' otherwise you will just get a blank image. To fix this right-click My Computer, select Manage/Services and Applications/Services - find the apache service (like Apache2) and right-click, select Properties - choose the Log on tab and check the 'Allow service to interact with desktop' checkbox. Restart Apache.

imagegrabwindow> <imagegif
Last updated: Fri, 13 Nov 2009
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites