Commit 8082aa67 authored by leonmuller's avatar leonmuller

Universal exporting. For objects that are not an image and are not a path they...

Universal exporting. For objects that are not an image and are not a path they will be converted to an image and then exported to be raster cut
parent ab026da0
...@@ -66,9 +66,11 @@ import copy ...@@ -66,9 +66,11 @@ import copy
import sys import sys
import time import time
#Image processing for rastering
import base64 import base64
from PIL import Image from PIL import Image
import ImageOps import ImageOps
import subprocess
import getopt import getopt
from io import BytesIO from io import BytesIO
...@@ -836,6 +838,15 @@ class Gcode_tools(inkex.Effect): ...@@ -836,6 +838,15 @@ class Gcode_tools(inkex.Effect):
self.currentTool = (self.currentTool+1) % 32 self.currentTool = (self.currentTool+1) % 32
return gcode return gcode
#Determine the tmp directory for the user's operating system.
def getTmpPath(self):
"""Define the temporary folder path depending on the operating system"""
if os.name == 'nt':
return 'C:\\WINDOWS\\Temp\\'
else:
return '/tmp/'
################################################################################ ################################################################################
### ###
### Curve to Gcode ### Curve to Gcode
...@@ -867,6 +878,7 @@ class Gcode_tools(inkex.Effect): ...@@ -867,6 +878,7 @@ class Gcode_tools(inkex.Effect):
csp = cubicsuperpath.parsePath(node.get("d")) csp = cubicsuperpath.parsePath(node.get("d"))
path['type'] = "vector" path['type'] = "vector"
path['id'] = node.get("id")
path['data'] = [] path['data'] = []
if (trans): if (trans):
...@@ -879,7 +891,11 @@ class Gcode_tools(inkex.Effect): ...@@ -879,7 +891,11 @@ class Gcode_tools(inkex.Effect):
pathsGroup = [] pathsGroup = []
for child in node.iterchildren(): for child in node.iterchildren():
data = compile_paths(child, trans) data = compile_paths(child, trans)
#inkex.errormsg(str(data))
if type(data) is not list:
pathsGroup.append(data.copy()) pathsGroup.append(data.copy())
else:
pathsGroup += data
return pathsGroup return pathsGroup
elif node.tag == SVG_IMAGE_TAG: elif node.tag == SVG_IMAGE_TAG:
#inkex.errormsg( ) #inkex.errormsg( )
...@@ -899,8 +915,6 @@ class Gcode_tools(inkex.Effect): ...@@ -899,8 +915,6 @@ class Gcode_tools(inkex.Effect):
inkscapeHeight = int(float(node.get("height"))) inkscapeHeight = int(float(node.get("height")))
data = str((node.get(inkex.addNS('href','xlink')) )).replace("data:image/png;base64,","").replace("data:image/jpeg;base64,","") data = str((node.get(inkex.addNS('href','xlink')) )).replace("data:image/png;base64,","").replace("data:image/jpeg;base64,","")
im = Image.open(BytesIO(base64.b64decode(data))).convert('L') im = Image.open(BytesIO(base64.b64decode(data))).convert('L')
img = ImageOps.invert(im) img = ImageOps.invert(im)
imageDataWidth, imageDataheight = img.size imageDataWidth, imageDataheight = img.size
...@@ -924,7 +938,40 @@ class Gcode_tools(inkex.Effect): ...@@ -924,7 +938,40 @@ class Gcode_tools(inkex.Effect):
#inkex.errormsg(str(path)) #inkex.errormsg(str(path))
return path return path
#The object isn't a path, and it's not an image. Convert it to an image to be rastered.
else :
tmp = self.getTmpPath() #OS tmp directory
bgcol = "#ffffff" #White
curfile = curfile = self.args[-1] #The current inkscape project we're exporting from.
command="inkscape --export-dpi 270 -i %s --export-id-only -e \"%stmpinkscapeexport.png\" -b \"%s\" %s" % (node.get("id"),tmp,bgcol,curfile)
p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
return_code = p.wait()
f = p.stdout
err = p.stderr
#Fetch the image Data
filename = "%stmpinkscapeexport.png" % (tmp)
im = Image.open(filename).convert('L')
img = ImageOps.invert(im)
#Get the image size
imageDataWidth, imageDataheight = img.size
#Compile the pixels.
pixels = list(img.getdata())
pixels = [pixels[i * (imageDataWidth):(i + 1) * (imageDataWidth)] for i in xrange(imageDataheight)]
path['type'] = "raster"
path['width'] = imageDataWidth
path['height'] = imageDataheight
path['x'] = self.unitScale*(float(node.get("x")) * 1)
#Add the height in px from inkscape from the image, as its top is measured from the origin top left, though in inkscape the origin is bottom left so we need to begin scanning the px at the bottom of the image for our laser bed.
path['y'] = self.unitScale * ((float(node.get("y"))+(float(imageDataheight)/3))*-1+self.pageHeight)
path['id'] = node.get("id")
path['data'] = pixels
return path
inkex.errormsg("skipping node " + str(node.tag)) inkex.errormsg("skipping node " + str(node.tag))
self.skipped += 1 self.skipped += 1
...@@ -976,14 +1023,19 @@ class Gcode_tools(inkex.Effect): ...@@ -976,14 +1023,19 @@ class Gcode_tools(inkex.Effect):
for node in layer.iterchildren(): for node in layer.iterchildren():
if (node in selected): if (node in selected):
#Vector path data, cut from x to y in a line or curve #Vector path data, cut from x to y in a line or curve
inkex.errormsg("Building gcode for "+str(node.tag)+" object." )
logger.write("node %s" % str(node.tag)) logger.write("node %s" % str(node.tag))
selected.remove(node) selected.remove(node)
try: try:
pathList.append(compile_paths(node, trans).copy()) newPath = compile_paths(node, trans).copy();
pathList.append(newPath)
inkex.errormsg("Built gcode for "+str(node.get("id"))+" - will be cut as %s." % (newPath['type']) )
except: except:
messageOnce = True
for objectData in compile_paths(node, trans): for objectData in compile_paths(node, trans):
#if (messageOnce):
inkex.errormsg("Built gcode for group "+str(node.get("id"))+", item %s - will be cut as %s." % (objectData['id'], objectData['type']) )
#messageOnce = False
pathList.append(objectData) pathList.append(objectData)
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment