ImageBase ib = new ImageBase();
ImageBase ib = new ImageBase("NAME_HERE"); // creates a ImageBase with specified name
ImageQuery iq = new ImageQuery(ib);
iq.setDimension(x, y); // default will be 100 x 100
keep in mind the created table will be on this dimension and is currently static (cannot be changed dynamically)
iq.write("Hello, this is a basic text! but there is a given name here!", "TABLE_NAME");
iq.setTableName("TABLE_NAME");
iq.write("Hello this is a basic text!");
ArrayList<String> datas = iq.read("TABLE_NAME");
datas.get(0);
iq.setTableName("TABLE_NAME");
ArrayList<String> datas = iq.read();
datas.get(0);
make sure that the given table_name exists else nothing returns,