User 20dc561d96
18-03-2005 20:16:37
The API documentation for the MolConvert class doesn't specify what options are available for the output molecule format.
I know that you can specify JPEG, and a few other general formats but where do you document the available optional parameters? For example, consider the following code snippet:
Where are the other optional parameters for the fmt string documented? I searched the online API, the developer documentation, and the forum area to no avail.
In particular, one of the things that I want to change is to force the image generated to be 2D. How can I do that?
Thank you,
Nolan
Code: |
MolConverter constructor: public MolConverter(java.util.Vector inFiles, java.io.OutputStream out, java.lang.String fmt, boolean useSysEOL) throws MolFormatException, java.io.IOException, java.lang.IllegalArgumentException |
I know that you can specify JPEG, and a few other general formats but where do you document the available optional parameters? For example, consider the following code snippet:
Code: |
MolConverter mcv = new MolConverter (ip,op, "jpeg:scale040,mono,H_heteroterm", false); |
Where are the other optional parameters for the fmt string documented? I searched the online API, the developer documentation, and the forum area to no avail.
In particular, one of the things that I want to change is to force the image generated to be 2D. How can I do that?
Thank you,
Nolan