Set Eps mime type

This commit is contained in:
Jesse Tan 2017-06-28 12:59:09 +02:00
parent 7f6a69ccbd
commit 77244844e4
1 changed files with 1 additions and 0 deletions

View File

@ -61,6 +61,7 @@ class DiagramResponse {
Map<FileFormat, String> map = new HashMap<FileFormat, String>();
map.put(FileFormat.PNG, "image/png");
map.put(FileFormat.SVG, "image/svg+xml");
map.put(FileFormat.EPS, "application/postscript");
map.put(FileFormat.UTXT, "text/plain;charset=UTF-8");
CONTENT_TYPE = Collections.unmodifiableMap(map);
}