fix value to text renaming
This commit is contained in:
parent
8475f64388
commit
d07aca4465
4 changed files with 21 additions and 11 deletions
|
@ -19,11 +19,11 @@ public class MarkupCommand implements Command {
|
|||
|
||||
@Override
|
||||
public void execute(Engine engine, State state, Settings settings) {
|
||||
String value = settings.get("value");
|
||||
Document document = state.getDocument();
|
||||
TextElement textElement = new TextElement(true, value);
|
||||
String text = settings.get("text");
|
||||
TextElement textElement = new TextElement(true, text);
|
||||
String[] fonts = settings.getAsArray("font");
|
||||
float fontsize = settings.getAsFloat("fontsize", 10.0f);
|
||||
Document document = state.getDocument();
|
||||
for (String font : fonts) {
|
||||
textElement.addFont(document.getFont(font), fontsize);
|
||||
}
|
||||
|
|
|
@ -19,11 +19,11 @@ public class TextCommand implements Command {
|
|||
|
||||
@Override
|
||||
public void execute(Engine engine, State state, Settings settings) {
|
||||
String value = settings.get("value");
|
||||
Document document = state.getDocument();
|
||||
TextElement textElement = new TextElement(false, value);
|
||||
String text = settings.get("text");
|
||||
TextElement textElement = new TextElement(false, text);
|
||||
String[] fonts = settings.getAsArray("font");
|
||||
float fontsize = settings.getAsFloat("fontsize", 10.0f);
|
||||
Document document = state.getDocument();
|
||||
for (String font : fonts) {
|
||||
textElement.addFont(document.getFont(font), fontsize);
|
||||
}
|
||||
|
|
10
graphics-pdfbox-layout/src/test/resources/logging.properties
Normal file
10
graphics-pdfbox-layout/src/test/resources/logging.properties
Normal file
|
@ -0,0 +1,10 @@
|
|||
handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
|
||||
.level=ALL
|
||||
java.util.logging.SimpleFormatter.format=%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS.%1$tL %4$-7s [%3$s] %5$s %6$s%n
|
||||
java.util.logging.ConsoleHandler.level=ALL
|
||||
java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
|
||||
java.util.logging.FileHandler.level=ALL
|
||||
java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
|
||||
java.util.logging.FileHandler.pattern=build/graphics.log
|
||||
jdk.event.security.level=INFO
|
||||
javax.management.level=INFO
|
|
@ -64,7 +64,7 @@
|
|||
"elements": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": "Hello World 1",
|
||||
"text": "Hello World 1",
|
||||
"fontsize": 24,
|
||||
"font": "helvetica"
|
||||
}
|
||||
|
@ -75,7 +75,7 @@
|
|||
"elements": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": "Hello World 2",
|
||||
"text": "Hello World 2",
|
||||
"fontsize": 24,
|
||||
"font": "helvetica"
|
||||
}
|
||||
|
@ -86,7 +86,7 @@
|
|||
"elements": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": "Hello World 3",
|
||||
"text": "Hello World 3",
|
||||
"fontsize": 24,
|
||||
"font": "helvetica"
|
||||
}
|
||||
|
@ -101,7 +101,7 @@
|
|||
"elements": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": "Hello World 4",
|
||||
"text": "Hello World 4",
|
||||
"fontsize": 16,
|
||||
"font": "notosans"
|
||||
}
|
||||
|
@ -112,7 +112,7 @@
|
|||
"elements": [
|
||||
{
|
||||
"type": "text",
|
||||
"value": "Hello World 5 Zwrotki dla Dorotki : arcyksiążę fiołków",
|
||||
"text": "Hello World 5 Zwrotki dla Dorotki : arcyksiążę fiołków",
|
||||
"fontsize": 20,
|
||||
"font": "notosans"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue