2

I'm working on this fun tool on a website I'm working on that allows the user to drag images around (using jQuery UI) to create their own character.

You can see the basics of this working here: http://goo.gl/JVXM0

What I'm after, however, is the ability for the user to then share their creation via Facebook and Twitter. Whether once created, it takes a screenshot of an area then they can share their creation... I'm unsure.

Having a look at this, is there any steps or directions I can take to making this happen?

Any help would be so appreciated.

Thanks, Richard

John the Painter
  • 2,495
  • 8
  • 59
  • 101
  • You'll likely need to do this server-side. Pass the coordinates of each item to a PHP script and have it use ImageMagick or GD to render it. – ceejayoz May 09 '12 at 15:13

1 Answers1

0

So you're trying to generate an image of the DOM on a page? If so, this would be a good question to start with: Generate image from DOM elements

Hope this helps!

Cheers, Robin

Community
  • 1
  • 1