首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >Spring Boot和Barbecue条形码库-文本未打印

Spring Boot和Barbecue条形码库-文本未打印
EN

Stack Overflow用户
提问于 2020-12-23 04:11:57
回答 1查看 1K关注 0票数 0

我有一个非常令人费解的场景。让我先粘贴代码,然后解释。

POM

代码语言:javascript
复制
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.example</groupId>
<artifactId>DeleteMe</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
    <maven.compiler.source>15</maven.compiler.source>
    <maven.compiler.target>15</maven.compiler.target>
</properties>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.5.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<dependencies>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>net.sourceforge.barbecue</groupId>
        <artifactId>barbecue</artifactId>
        <version>1.5-beta1</version>
    </dependency>
</dependencies>

代码语言:javascript
复制
import net.sourceforge.barbecue.*;
import net.sourceforge.barbecue.output.OutputException;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;

import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.text.MessageFormat;    

@SpringBootApplication
public class App {
    public static void main(String[] args) throws BarcodeException, OutputException, IOException {
        final ConfigurableApplicationContext context = SpringApplication.run(App.class, args);
        String barcodeText = "MSTR-23829X-9";
        final var barbecue = barbecue(barcodeText);

        System.out.println("Writing image");

        writeImage(barbecue, barcodeText);
    }

    public static void writeImage(BufferedImage bufferedImage, String barcodeText) throws IOException {
        File outputfile = new File(MessageFormat.format("{0}.png", barcodeText));
        ImageIO.write(bufferedImage, "png", outputfile);
    }

    public static BufferedImage barbecue(String barcodeText) throws BarcodeException, OutputException {
        Barcode barcode = BarcodeFactory.createCode128(barcodeText);
        barcode.setBarHeight(100);
        barcode.setResolution(200);

        Font font = new Font("Monospaced", Font.PLAIN, 20);
        barcode.setFont(font);

        return BarcodeImageHandler.getImage(barcode);
    }
}

问题

代码只是使用barbecue中提供的pom.xml库创建一个条形码映像。

当我删除/注释这一行final ConfigurableApplicationContext context = SpringApplication.run(App.class, args);时,条形码中的文本如下图所示

但是,当我把它放在那里时,文本不会按下面所示的条形码打印。

我试图实现的是提供一个控制器,在那里可以从文本生成条形码图像。

我只是对初始化Spring Boot应用程序和在条形码上打印文本之间的关系感到困惑。

EN

回答 1

Stack Overflow用户

发布于 2020-12-23 05:17:10

这个github项目解决了这个问题。使用以下命令,拉出项目并手动在项目中安装.jar文件:

mvn install:install-file -Dfile=barbecue-1.5-beta1.jar -DgroupId=local -DartifactId=barbecue -Dversion=1.5-beta1-linux -Dpackaging=jar

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/65418918

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档