0

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

PHP_USER1
  • 628
  • 1
  • 14
  • 29

1 Answers1

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