C++ Implementation of JAVA API
Java is a programming language created by Sun Microsystems ,now owned by Oracle Corporation. One of the strength of the Java programming is that it comes with a rich set of Application Programming Interface (API). This API facilitates programming of IMAGE Processing, Sound processing etc. The standard library in C/C++ does not have any built in functions for manipulating images or sound. You have to start coding from scratch a set of functions which will allow you to accomplish this task (What a pain !!) Alternatively, you can use open-source or third party libraries. While searching for a native implementation of JAVA-like API I got NaJa and NewJ as solutions. NaJa is an open source project while NewJ is a commercial product (Trial available) What is NaJa according to the official website : "NaJA stands for Native C++ Java-like API. The Java API is is a rich, standard and quite good design object library. There is no complete equivalent usable direc...