kopia lustrzana https://github.com/inkstitch/inkstitch
rodzic
1e97ad32c0
commit
138aa78cb7
|
@ -184,7 +184,7 @@ class Palette:
|
||||||
Threadcount:
|
Threadcount:
|
||||||
B24W4B24R2K24G24W2
|
B24W4B24R2K24G24W2
|
||||||
|
|
||||||
Palette:
|
Pallet:
|
||||||
B=0000FFBLUE;W=FFFFFFWHITE;R=FF0000RED;K=000000BLACK;G=289C18GREEN;
|
B=0000FFBLUE;W=FFFFFFWHITE;R=FF0000RED;K=000000BLACK;G=289C18GREEN;
|
||||||
|
|
||||||
Threadcount given over a half sett with full count at the pivots.
|
Threadcount given over a half sett with full count at the pivots.
|
||||||
|
@ -199,15 +199,16 @@ class Palette:
|
||||||
self.symmetry = True
|
self.symmetry = True
|
||||||
|
|
||||||
colors = []
|
colors = []
|
||||||
|
color_dict = dict()
|
||||||
thread_code = ''
|
thread_code = ''
|
||||||
stripes = []
|
stripes = []
|
||||||
lines = code.splitlines()
|
lines = code.splitlines()
|
||||||
i = 0
|
i = 0
|
||||||
while i < len(lines):
|
while i < len(lines):
|
||||||
line = lines[i].strip()
|
line = lines[i].strip()
|
||||||
if 'Threadcount:' in line and len(lines) > i:
|
if 'Threadcount:' in line and len(lines) > i + 1:
|
||||||
thread_code = lines[i+1]
|
thread_code = lines[i+1]
|
||||||
elif line.startswith('Palette:'):
|
elif 'Pallet:' in line and len(lines) > i + 1:
|
||||||
palette = lines[i+1]
|
palette = lines[i+1]
|
||||||
colors = re.findall(r'([A-Za-z]+)=#?([0-9afA-F]{6})', palette)
|
colors = re.findall(r'([A-Za-z]+)=#?([0-9afA-F]{6})', palette)
|
||||||
color_dict = dict(colors)
|
color_dict = dict(colors)
|
||||||
|
|
Ładowanie…
Reference in New Issue