Skip to content

Instantly share code, notes, and snippets.

@aspose-cloud
Last active September 20, 2021 08:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-cloud/b275b6718fd8f750b68be207374704ae to your computer and use it in GitHub Desktop.
Save aspose-cloud/b275b6718fd8f750b68be207374704ae to your computer and use it in GitHub Desktop.
This Gist contains code snippets related to 3DS file to DXF conversion using Aspose.3D Cloud SDK for Java
This Gist contains code snippets related to conversion 3DS file to DXF conversion using Aspose.3D Cloud SDK for Java
// Get clientId and clientSecret from https://dashboard.aspose.cloud/
String clientId = "718e4235-8866-4ebe-bff4-f5a14a4b6466";
String clientSecret = "388e864b819d8b067a8b1cb625a2ea8e";
// create an instance of Aspose.3D cloud
ThreeDCloudApi threeDCloudApi = new ThreeDCloudApi("client_credentials", clientId, clientSecret);
// name of input 3DWS file
String name = "Esso.3ds";
// output format detailis
String newformat = "amf";
// name of resultant file
String newFileName = "Esso.amf";
// if no information for storage is specified, default storage is used
String storage1 = null;
// initialize the conversion operation
File response = threeDCloudApi.postConvertByFormat(name, newformat, newFileName, null, true, storage1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment