Compare commits

..

No commits in common. "2d710ee74e1fe670f1e0a01857864079a72326fb" and "0d11e6ae5ade42b64fa4b0994cb31c48720c68e9" have entirely different histories.

5 changed files with 22 additions and 72 deletions

3
.gitignore vendored
View File

@ -145,9 +145,6 @@ cython_debug/
*.cbz *.cbz
*.pdf *.pdf
# vscode
.vscode/
*.bat *.bat
.idea/ .idea/

View File

@ -1,3 +1,12 @@
<!-- +++
Area = "projects"
GitHub = "mangle"
Layout = "page"
Tags = ["kindle", "manga", "mangle", "pil", "pyqt", "python", "gpl license"]
Description = "Manga processor for the Kindle e-book reader."
Collection = "ProjectsComplete"
+++ -->
# Mangle # Mangle
Mangle is a cross-platform image converter and optimizer built for reading Manga on the Amazon Kindle and other E-ink Mangle is a cross-platform image converter and optimizer built for reading Manga on the Amazon Kindle and other E-ink

View File

@ -24,14 +24,12 @@ class ImageFlags:
Resize = 1 << 1 Resize = 1 << 1
Frame = 1 << 2 Frame = 1 << 2
Quantize = 1 << 3 Quantize = 1 << 3
Fit = 1 << 4 ScaleCrop = 1 << 4
SplitRightLeft = 1 << 5 # split right then left SplitRightLeft = 1 << 5 # split right then left
SplitRight = 1 << 6 # split only the right page SplitRight = 1 << 6 # split only the right page
SplitLeft = 1 << 7 # split only the left page SplitLeft = 1 << 7 # split only the left page
SplitLeftRight = 1 << 8 # split left then right page SplitLeftRight = 1 << 8 # split left then right page
AutoCrop = 1 << 9 AutoCrop = 1 << 9
Fill = 1 << 10
Stretch = 1 << 11
class KindleData: class KindleData:
@ -136,45 +134,17 @@ def quantizeImage(image, palette):
@protect_bad_image @protect_bad_image
def fitImage(image, size, method=Image.ANTIALIAS): def scaleCropImage(image, size):
# copied from ImageOps.contain() from the Python3 version of Pillow
# with division related modifications for Python2
im_ratio = 1.0 * image.width / image.height
dest_ratio = 1.0 * size[0] / size[1]
if im_ratio != dest_ratio:
if im_ratio > dest_ratio:
new_height = int(1.0 * image.height / image.width * size[0])
if new_height != size[1]:
size = (size[0], new_height)
else:
new_width = int(1.0 * image.width / image.height * size[1])
if new_width != size[0]:
size = (new_width, size[1])
return image.resize(size, resample=method)
@protect_bad_image
def fillImage(image, size):
widthDev, heightDev = size widthDev, heightDev = size
widthImg, heightImg = image.size widthImg, heightImg = image.size
imgRatio = float(widthImg) / float(heightImg)
devRatio = float(widthDev) / float(heightDev)
# don't crop 2 page spreads. # don't crop 2 page spreads.
if imgRatio > devRatio: if (float(widthImg) / float(heightImg)) > (float(widthDev) / float(heightDev)):
return resizeImage(image, size) return resizeImage(image, size)
return ImageOps.fit(image, size, Image.ANTIALIAS) return ImageOps.fit(image, size, Image.ANTIALIAS)
@protect_bad_image
def stretchImage(image, size):
return image.resize(size, Image.ANTIALIAS)
@protect_bad_image @protect_bad_image
def resizeImage(image, size): def resizeImage(image, size):
widthDev, heightDev = size widthDev, heightDev = size
@ -212,11 +182,8 @@ def orientImage(image, size):
widthDev, heightDev = size widthDev, heightDev = size
widthImg, heightImg = image.size widthImg, heightImg = image.size
if widthImg <= widthDev and heightImg <= heightDev:
return image
if (widthImg > heightImg) != (widthDev > heightDev): if (widthImg > heightImg) != (widthDev > heightDev):
return image.transpose(Image.ROTATE_90) return image.rotate(90, Image.BICUBIC, True)
return image return image
@ -224,11 +191,12 @@ def orientImage(image, size):
# by inverting colors, and asking a bounder box ^^ # by inverting colors, and asking a bounder box ^^
@protect_bad_image @protect_bad_image
def autoCropImage(image): def autoCropImage(image):
w, h = image.size
try: try:
x0, y0, xend, yend = ImageChops.invert(image).getbbox() x0, y0, xend, yend = ImageChops.invert(image).getbbox()
except TypeError: # bad image, specific to chops except TypeError: # bad image, specific to chops
return image return image
image = image.crop((x0, y0, xend, yend)) image = image.crop((0, y0, w, yend))
return image return image
@ -315,12 +283,8 @@ def convertImage(source, target, device, flags):
image = orientImage(image, size) image = orientImage(image, size)
if flags & ImageFlags.Resize: if flags & ImageFlags.Resize:
image = resizeImage(image, size) image = resizeImage(image, size)
if flags & ImageFlags.Fit: if flags & ImageFlags.ScaleCrop:
image = fitImage(image, size) image = scaleCropImage(image, size)
if flags & ImageFlags.Fill:
image = fillImage(image, size)
if flags & ImageFlags.Stretch:
image = stretchImage(image, size)
if flags & ImageFlags.Frame: if flags & ImageFlags.Frame:
image = frameImage(image, tuple(palette[:3]), tuple(palette[-3:]), size) image = frameImage(image, tuple(palette[:3]), tuple(palette[-3:]), size)
if flags & ImageFlags.Quantize: if flags & ImageFlags.Quantize:

View File

@ -43,9 +43,7 @@ class DialogOptions(QtGui.QDialog):
self.checkboxOverwrite.setChecked(self.book.overwrite) self.checkboxOverwrite.setChecked(self.book.overwrite)
self.checkboxOrient.setChecked(self.book.imageFlags & ImageFlags.Orient) self.checkboxOrient.setChecked(self.book.imageFlags & ImageFlags.Orient)
self.checkboxResize.setChecked(self.book.imageFlags & ImageFlags.Resize) self.checkboxResize.setChecked(self.book.imageFlags & ImageFlags.Resize)
self.checkboxFit.setChecked(self.book.imageFlags & ImageFlags.Fit) self.checkboxScaleCrop.setChecked(self.book.imageFlags & ImageFlags.ScaleCrop)
self.checkboxFill.setChecked(self.book.imageFlags & ImageFlags.Fill)
self.checkboxStretch.setChecked(self.book.imageFlags & ImageFlags.Stretch)
self.checkboxQuantize.setChecked(self.book.imageFlags & ImageFlags.Quantize) self.checkboxQuantize.setChecked(self.book.imageFlags & ImageFlags.Quantize)
self.checkboxFrame.setChecked(self.book.imageFlags & ImageFlags.Frame) self.checkboxFrame.setChecked(self.book.imageFlags & ImageFlags.Frame)
@ -64,12 +62,8 @@ class DialogOptions(QtGui.QDialog):
imageFlags |= ImageFlags.Orient imageFlags |= ImageFlags.Orient
if self.checkboxResize.isChecked(): if self.checkboxResize.isChecked():
imageFlags |= ImageFlags.Resize imageFlags |= ImageFlags.Resize
if self.checkboxFit.isChecked(): if self.checkboxScaleCrop.isChecked():
imageFlags |= ImageFlags.Fit imageFlags |= ImageFlags.ScaleCrop
if self.checkboxFill.isChecked():
imageFlags |= ImageFlags.Fill
if self.checkboxStretch.isChecked():
imageFlags |= ImageFlags.Stretch
if self.checkboxQuantize.isChecked(): if self.checkboxQuantize.isChecked():
imageFlags |= ImageFlags.Quantize imageFlags |= ImageFlags.Quantize
if self.checkboxFrame.isChecked(): if self.checkboxFrame.isChecked():

View File

@ -215,23 +215,9 @@
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QRadioButton" name="checkboxFit"> <widget class="QRadioButton" name="checkboxScaleCrop">
<property name="text"> <property name="text">
<string>Fit to screen with borders</string> <string>Scale and crop images to fill screen width</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="checkboxFill">
<property name="text">
<string>Fill screen by cropping</string>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="checkboxStretch">
<property name="text">
<string>Stretch images to fill screen</string>
</property> </property>
</widget> </widget>
</item> </item>