mirror of
https://github.com/status-im/QR-Code-generator.git
synced 2026-08-31 01:31:10 +00:00
Simplified miscellaneous Java and Python application code.
This commit is contained in:
@@ -28,11 +28,9 @@ package io.nayuki.qrcodegen;
|
||||
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.io.File;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStreamWriter;
|
||||
import java.io.Writer;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.nio.file.Files;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import javax.imageio.ImageIO;
|
||||
@@ -64,11 +62,8 @@ public final class QrCodeGeneratorDemo {
|
||||
ImageIO.write(img, "png", imgFile); // Write image to file
|
||||
|
||||
String svg = qr.toSvgString(4); // Convert to SVG XML code
|
||||
try (Writer out = new OutputStreamWriter(
|
||||
new FileOutputStream("hello-world-QR.svg"),
|
||||
StandardCharsets.UTF_8)) {
|
||||
out.write(svg); // Create/overwrite file and write SVG data
|
||||
}
|
||||
Files.write(new File("hello-world-QR.svg").toPath(),
|
||||
svg.getBytes(StandardCharsets.UTF_8));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user