Php – Is JQuery or Javascript capable for image processing

jqueryPHP

My plan is to develop a web based application in the future. I think I can name it "Booth Reservation System" for the Events companies here in our country. One of the main functionality of the system and the most tricky part/difficult part is that the user can upload a "floor plan" (the design of the area were the booth is located in any image format) and then select the specific location on the floor plan to reserve to the booth. Also, the user can create a floor plan on the system.

What do you think? What programming language can I use?

Best Answer

There are tons of sites and documentation out there to make things like maps and the like with javascript and images.

I would use javascript. Google Maps is based on this.

First; You need a canvas, then...

using getImageData() and putImageData() will help you with the image part.

see my page at fracturedcode. I hope it can be useful to you.

Related Topic