19 lines
238 B
Python
19 lines
238 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
import sys
|
||
|
|
||
|
import logging
|
||
|
#logging.basicConfig(level = logging.DEBUG)
|
||
|
|
||
|
from gi.repository import Vips
|
||
|
|
||
|
#Vips.cache_set_trace(True)
|
||
|
|
||
|
a = Vips.Image.new_from_file(sys.argv[1])
|
||
|
|
||
|
a = a[1:]
|
||
|
|
||
|
a.write_to_file(sys.argv[2])
|
||
|
|
||
|
|