mirror of
https://github.com/lalbornoz/roar.git
synced 2024-11-16 12:36:38 +00:00
MiRCARTCanvasImportStore.py:importTextFile(): open() w/ encoding="utf-8-sig" due to potentially present BOM.
MiRCARTToPngFile.py:export(): disable PIL font anti-aliasing.
This commit is contained in:
parent
b4e2286ecc
commit
ecaaf75b6b
@ -53,7 +53,7 @@ class MiRCARTCanvasImportStore():
|
||||
# }}}
|
||||
# {{{ importTextFile(self, pathName): XXX
|
||||
def importTextFile(self, pathName):
|
||||
self.inFile = open(pathName, "r", encoding="utf-8")
|
||||
self.inFile = open(pathName, "r", encoding="utf-8-sig")
|
||||
self.inSize = self.outMap = None;
|
||||
inCurColourSpec = ""; inCurRow = -1;
|
||||
inLine = self.inFile.readline()
|
||||
|
@ -68,6 +68,7 @@ class MiRCARTToPngFile:
|
||||
outCurPos = [0, 0]
|
||||
outImg = Image.new("RGBA", outSize, (*self._ColourMapNormal[1], 255))
|
||||
outImgDraw = ImageDraw.Draw(outImg)
|
||||
outImgDraw.fontmode = "1"
|
||||
for inCurRow in range(len(self.inCanvasMap)):
|
||||
for inCurCol in range(len(self.inCanvasMap[inCurRow])):
|
||||
inCurCell = self.inCanvasMap[inCurRow][inCurCol]
|
||||
|
Loading…
Reference in New Issue
Block a user