Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active April 1, 2025 12:44
Show Gist options
  • Save aspose-com-gists/e700fc5f7c7658684835f4d6bd3bcb41 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/e700fc5f7c7658684835f4d6bd3bcb41 to your computer and use it in GitHub Desktop.
Rotate Barcode Images in Java
public class main {
public static void main(String[] args) throws IOException {
// The path to the resource directory.
String dataDir = "/Users/Mustafa/Desktop/";
// Initialize an instance of the BarcodeGenerator class.
BarcodeGenerator barcodeGen = new BarcodeGenerator(EncodeTypes.CODE_39_STANDARD,"1234567");
// Invoke the setRotationAngle method to rotate clockwise for 180 degree (upside down).
barcodeGen.getParameters().setRotationAngle(180);
// Save the image by calling the save method.
barcodeGen.save(dataDir + "barcode-image-rotate.jpg");
//ExEnd: RotateBarcodeImage
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment