I need to know how to translate a imagemagick commandline-command into java im4java code commandline:
convert -limit memory 40GiB -define registry:temporary-path=F:\\imageMagick Row_1.png Row_2.png -append Row_12.png"
I know how to use convert and -append in im4java but what about -define and -limit? Here is what I got:
    IMOperation op = new IMOperation();
    op.addImage("Row_1.png","Row_2.png");
    op.appendVertically();
    op.addImage("Row_12.png");                      
    cmd.run(op);
maybe just add op.limit("memory 40GiB") and op.define("registry:temporary-path=F:\\imageMagick") ? I don't know whether it is the same..