We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61bafe8 commit a0c9790Copy full SHA for a0c9790
src/main/java/ai/elimu/web/content/multimedia/image/ImageCsvExportController.java
@@ -43,7 +43,8 @@ public void handleRequest(
43
"checksum_md5",
44
"checksum_github",
45
"download_url",
46
- "image_format"
+ "image_format",
47
+ "dominant_color"
48
);
49
StringWriter stringWriter = new StringWriter();
50
CSVPrinter csvPrinter = new CSVPrinter(stringWriter, csvFormat);
@@ -59,7 +60,8 @@ public void handleRequest(
59
60
image.getChecksumMd5(),
61
image.getChecksumGitHub(),
62
image.getUrl(),
- image.getImageFormat()
63
+ image.getImageFormat(),
64
+ image.getDominantColor()
65
66
}
67
csvPrinter.flush();
0 commit comments