Last active
April 1, 2025 12:44
-
-
Save aspose-com-gists/e700fc5f7c7658684835f4d6bd3bcb41 to your computer and use it in GitHub Desktop.
Rotate Barcode Images in Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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