I'm printing 4x1 labels and trying both raw_uri and raw_base64 and that prints out the label with size of the content increased by 33% approx. Below is how I'm creating PrintJob
my_printjob_info = PrintNode::PrintJob.new(printer_id, 'PrintJob_OE4', 'raw_base64','InventorySticker_363467.txt', 'PrintNode-OE4') #using raw_base_64
my_printjob_info = PrintNode::PrintJob.new(printer_id.to_i, 'PrintJob_OE4', 'raw_uri',uri, 'PrintNode-OE4') # uri is the url in my application through which the file could be downloaded.
Please advice. Thanks