mirror of
https://github.com/ciromattia/kcc
synced 2025-12-15 18:56:28 +00:00
Sync droplet
This commit is contained in:
@@ -59,7 +59,7 @@
|
|||||||
<key>savedFrame</key>
|
<key>savedFrame</key>
|
||||||
<string>144 338 889 690 0 0 1680 1028 </string>
|
<string>144 338 889 690 0 0 1680 1028 </string>
|
||||||
<key>selectedTabView</key>
|
<key>selectedTabView</key>
|
||||||
<string>result</string>
|
<string>event log</string>
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
Binary file not shown.
@@ -239,7 +239,7 @@ def Usage():
|
|||||||
parser.print_help()
|
parser.print_help()
|
||||||
|
|
||||||
def main(argv=None):
|
def main(argv=None):
|
||||||
global parser, options
|
global parser, options, epub_path
|
||||||
usage = "Usage: %prog [options] comic_file|comic_folder"
|
usage = "Usage: %prog [options] comic_file|comic_folder"
|
||||||
parser = OptionParser(usage=usage, version=__version__)
|
parser = OptionParser(usage=usage, version=__version__)
|
||||||
parser.add_option("-p", "--profile", action="store", dest="profile", default="KHD",
|
parser.add_option("-p", "--profile", action="store", dest="profile", default="KHD",
|
||||||
@@ -250,14 +250,14 @@ def main(argv=None):
|
|||||||
help="Split pages 'manga style' (right-to-left reading) [default=False]")
|
help="Split pages 'manga style' (right-to-left reading) [default=False]")
|
||||||
parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False,
|
parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False,
|
||||||
help="Verbose output [default=False]")
|
help="Verbose output [default=False]")
|
||||||
parser.add_option("-i", "--image-processing", action="store_false", dest="imgproc", default=True,
|
parser.add_option("--no-image-processing", action="store_false", dest="imgproc", default=True,
|
||||||
help="Apply image preprocessing (page splitting and optimizations) [default=True]")
|
help="Do not apply image preprocessing (page splitting and optimizations) [default=True]")
|
||||||
parser.add_option("--upscale-images", action="store_true", dest="upscale", default=False,
|
parser.add_option("--upscale-images", action="store_true", dest="upscale", default=False,
|
||||||
help="Resize images smaller than device's resolution [default=False]")
|
help="Resize images smaller than device's resolution [default=False]")
|
||||||
parser.add_option("--stretch-images", action="store_true", dest="stretch", default=False,
|
parser.add_option("--stretch-images", action="store_true", dest="stretch", default=False,
|
||||||
help="Stretch images to device's resolution [default=False]")
|
help="Stretch images to device's resolution [default=False]")
|
||||||
parser.add_option("--cut-page-numbers", action="store_false", dest="cutpagenumbers", default=True,
|
parser.add_option("--no-cut-page-numbers", action="store_false", dest="cutpagenumbers", default=True,
|
||||||
help="Try to cut page numbering on images [default=True]")
|
help="Do not try to cut page numbering on images [default=True]")
|
||||||
options, args = parser.parse_args(argv)
|
options, args = parser.parse_args(argv)
|
||||||
if len(args) != 1:
|
if len(args) != 1:
|
||||||
parser.print_help()
|
parser.print_help()
|
||||||
@@ -269,7 +269,11 @@ def main(argv=None):
|
|||||||
dirImgProcess(path)
|
dirImgProcess(path)
|
||||||
print "Creating ePub structure..."
|
print "Creating ePub structure..."
|
||||||
genEpubStruct(path)
|
genEpubStruct(path)
|
||||||
|
epub_path = path
|
||||||
|
|
||||||
|
def getEpubPath():
|
||||||
|
global epub_path
|
||||||
|
return epub_path
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
Copyright()
|
Copyright()
|
||||||
|
|||||||
@@ -206,6 +206,20 @@ class SectionStripper:
|
|||||||
def getHeader(self):
|
def getHeader(self):
|
||||||
return self.stripped_data_header
|
return self.stripped_data_header
|
||||||
|
|
||||||
|
def main(argv=None):
|
||||||
|
infile = argv[0]
|
||||||
|
outfile = argv[1]
|
||||||
|
data_file = file(infile, 'rb').read()
|
||||||
|
try:
|
||||||
|
strippedFile = SectionStripper(data_file)
|
||||||
|
file(outfile, 'wb').write(strippedFile.getResult())
|
||||||
|
print "Header Bytes: " + binascii.b2a_hex(strippedFile.getHeader())
|
||||||
|
if len(argv)==3:
|
||||||
|
file(argv[2], 'wb').write(strippedFile.getStrippedData())
|
||||||
|
except StripException, e:
|
||||||
|
print "Error: %s" % e
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
sys.stdout=Unbuffered(sys.stdout)
|
sys.stdout=Unbuffered(sys.stdout)
|
||||||
print ('KindleStrip v%(__version__)s. '
|
print ('KindleStrip v%(__version__)s. '
|
||||||
@@ -218,16 +232,5 @@ if __name__ == "__main__":
|
|||||||
print "<strippeddatafile> is optional."
|
print "<strippeddatafile> is optional."
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
infile = sys.argv[1]
|
main(sys.argv[1:])
|
||||||
outfile = sys.argv[2]
|
|
||||||
data_file = file(infile, 'rb').read()
|
|
||||||
try:
|
|
||||||
strippedFile = SectionStripper(data_file)
|
|
||||||
file(outfile, 'wb').write(strippedFile.getResult())
|
|
||||||
print "Header Bytes: " + binascii.b2a_hex(strippedFile.getHeader())
|
|
||||||
if len(sys.argv)==4:
|
|
||||||
file(sys.argv[3], 'wb').write(strippedFile.getStrippedData())
|
|
||||||
except StripException, e:
|
|
||||||
print "Error: %s" % e
|
|
||||||
sys.exit(1)
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
<key>savedFrame</key>
|
<key>savedFrame</key>
|
||||||
<string>144 338 889 690 0 0 1680 1028 </string>
|
<string>144 338 889 690 0 0 1680 1028 </string>
|
||||||
<key>selectedTabView</key>
|
<key>selectedTabView</key>
|
||||||
<string>result</string>
|
<string>event log</string>
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user