Skip to content

Instantly share code, notes, and snippets.

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/2399f6ed533c703947998ae28f425d4f to your computer and use it in GitHub Desktop.
Save aspose-cloud/2399f6ed533c703947998ae28f425d4f to your computer and use it in GitHub Desktop.
This gist contains code snippets related to Flip and rotate operation on CAD files
// Get clientId and clientSecret from https://dashboard.aspose.cloud/
String clientId = "a6c970b2-33d3-4263-b367-62ca4630b955";
String clientSecret = "9ae816d921f1371b8d09edc799125d56";
CadApi cadApi = new CadApi(clientSecret, clientId);
String inputFileName = "Nikon_D90_Camera.dgn";
// Possible values are jpg, bmp, psd, tiff, gif, png, j2k, wmf and pdf
String formatToExport = "pdf";
// rotate with 180 and flip is none
String method = "RotateNoneFlipX";
// resultant file name
String destFileName = "910609.pdf";
// create an instance of GetDrawingRotateFlipRequest object
GetDrawingRotateFlipRequest request = new GetDrawingRotateFlipRequest(inputFileName, formatToExport, method, null, destFileName, null);
// initiate the conversion operation
cadApi.getDrawingRotateFlip(request);
This gist contains code snippets related to performing Flip and Rotate operation on CAD images using Aspose.CAD Cloud SDK for Java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment