Since I could not find a proper library in C++ in order to use for rendering images from TeX, without dependency of LaTeX, I made up my mind to use GIWS. I also tried mimeTeX but I could not find it enough for my project (it does not easily work with C++, and rendered images are not good, moreover .gif not .png)
This is my Java Code:
package clatex;
import java.io.IOException;
import org.scilab.forge.jlatexmath.TeXConstants;
import org.scilab.forge.jlatexmath.TeXFormula;
import org.scilab.forge.jlatexmath.TeXIcon;
import java.awt.image.BufferedImage;
import java.io.File;
import javax.imageio.ImageIO;
public class CLatex {
public CLatex(){
}
public int turn(int a) throws IOException{
String math = "X+X";
TeXFormula formule = new TeXFormula(math);
TeXIcon ti = formule.createTeXIcon(TeXConstants.STYLE_DISPLAY, 40);
BufferedImage b = new BufferedImage(ti.getIconWidth(), ti.getIconHeight(), BufferedImage.TYPE_4BYTE_ABGR);
File outputfile = new File("saved.png");
ImageIO.write(b, "png", outputfile);
return 0;
}
}`
To summarize this code: I have a package called clatex, I'm using org.scilab.forge.jlatexmath. The method int turn() creates "saved.png" and the constructor is empty. I also tested this code.
This is CLatex.giws.xml:
<?xml version="1.0" encoding="UTF-8"?>
<package name="CLatex">
<object name="CLatex">
<method name="turn" returnType="int">
<param type="int" name="a" />
</method>
</object>
</package>
This code is relevant with GIWS.
GIWS renders this code and generates CLatex.cpp and CLatex.h. This is my C++ code:
#include "latex/CLatex.h"
#include <jni.h>
JavaVM* create_vm() {
JavaVM* jvm; JNIEnv* env;
JavaVMInitArgs args;
JavaVMOption options[2];
/* There is a new JNI_VERSION_1_4, but it doesn't add anything for the purposes of our example. */
args.version = JNI_VERSION_1_4;
args.nOptions = 2;
options[0].optionString = "-Djava.class.path=.";
options[1].optionString = "-Xcheck:jni";
args.options = options;
args.ignoreUnrecognized = JNI_FALSE;
JNI_CreateJavaVM(&jvm, (void **)&env, &args);
return jvm;
}
int main(){
JavaVM* jvm = create_vm();
CLatex::CLatex *test =
new CLatex::CLatex(jvm);
return test->turn(22);
}
When I use this code, it writes: "Process terminated with status 1 (0 minutes, 0 seconds)". It does not compile and gives error.
I do not know which part of my code is wrong, Java, XML or C++ (Maybe something is wrong with GIWS?). I'm unfortunately not good at Java, but trying to get handle it. Thank you for your help.
As a note, I use Code::Blocks with GCC for C++; and NetBeans for Java, under Ubuntu Quantal Quetzal.
