示例#1
0
def main(argv):
	inputfile = ''
	outputfile = ''
	try:
		opts, args = getopt.getopt(argv,"hi:",["ifile=","ofile="])
	except getopt.GetoptError:
		print 'Encode.py -i <inputfile>'
		sys.exit(2)
	for opt, arg in opts:
		if opt == '-h':
			print 'Encode.py -i <inputfile>'
			sys.exit()
		elif opt in ("-i", "--ifile"):
			inputfile = arg
	
	encoder = PicEncoder()
	
	encoder.encode(inputfile)
示例#2
0
def main(argv):
	inputfile = ''
	outputfile = ''
	try:
		opts, args = getopt.getopt(argv,"he:c:",["efile=","cfile="])
	except getopt.GetoptError:
		print 'Decode.py -e <encodedfile> -c <controlfile>'
		sys.exit(2)
	for opt, arg in opts:
		if opt == '-h':
			print 'Decode.py -c <encodedfile> -c <controlfile>'
			sys.exit()
		elif opt in ("-e", "--efile"):
			encoded = arg
		elif opt in ("-c", "--cfile"):
			control = arg
	encoder = PicEncoder()
	
	output_string = encoder.decode(encoded, control)
	
	print output_string[2:]
示例#3
0
def main(argv):
    inputfile = ''
    outputfile = ''
    try:
        opts, args = getopt.getopt(argv, "he:c:", ["efile=", "cfile="])
    except getopt.GetoptError:
        print 'Decode.py -e <encodedfile> -c <controlfile>'
        sys.exit(2)
    for opt, arg in opts:
        if opt == '-h':
            print 'Decode.py -c <encodedfile> -c <controlfile>'
            sys.exit()
        elif opt in ("-e", "--efile"):
            encoded = arg
        elif opt in ("-c", "--cfile"):
            control = arg
    encoder = PicEncoder()

    output_string = encoder.decode(encoded, control)

    print output_string[2:]