I am collecting all the profile pic of my friends . Then i am putting all the images in a div .I am working in a php language . So i want to take the screenshot of that div and make it downloaded as a jpeg or png . So if anybody can help me
Asked
Active
Viewed 1,152 times
0
-
Not possible using standard libraries (and any extensions I'm aware of). Generally, from PHP you can't run anything on user side. Use JavaScript for that. – Tomáš Zato Jun 23 '14 at 17:55
-
Can't you at least do a quick Google? https://browshot.com/api/libraries/php – Christian Bonato Jun 23 '14 at 17:57
1 Answers
1
Since the pictures reside in a div, which is in the client side, and php runs in the server side, you can't use php to get the pictures.
What you can do is send the pictures to the server (file upload) and manipulate it there.

Jenian
- 552
- 1
- 5
- 18