This article mainly introduces the Python implementation of JPG Image repair code, this article directly gives the implementation code, the need for friends can refer to the
Recently, the customer fixes the corrupted JPG write, the effect is also OK, but does not guarantee to apply any circumstance.
If you have damaged photos, you might as well try, if you can use to leave a message for me oh.
The code is as follows:
#-*-Coding:utf8-*-
#!/usr/bin/env Python
__author__ = ' fengxing '
__date__ = ' 2012-1-18 20:13 '
Import Sys
def jpgfix (name):
sig = ' Xffxd8xffxdb '
With open (name, "R") as FD:
Fd.seek (Len (SIG), 0)
JPG = Fd.read ()
pos = Jpg.find (SIG)
If POS < 0:
Raise Exception (' not find signature ')
JPG = Jpg[pos:]
With open (name, "W") as FD:
Fd.seek (0, 0)
print ' size is: ', len (jpg)
Fd.write (jpg)
if __name__ = = ' __main__ ':
Try
While True:
Jpgfix (Sys.argv[1])
Except
print ' Done '
The use method is simple, the above code is saved as jpg_fix.py, and then enter from the command line
The code is as follows:
Python jpg_fix.py abc.jpg
Abc.jpg is the picture you want to fix (note: Please back up yourself before repairing)