
# 원본 깨진 JPG 파일을 뒤집어서 새로운 파일로 저장하는 코드input_file = "Reverse_Decoding.jpg" # 원본 파일output_file = "Fixed_Image.jpg" # 복구된 파일# 파일을 바이너리 모드로 열어서 읽은 후, 역순으로 저장with open(input_file, "rb") as f: data = f.read()[::-1] # 파일을 역순으로 뒤집기with open(output_file, "wb") as f: f.write(data) # 뒤집은 데이터 저장print(f"복구된 파일이 {output_file}로 저장되었습니다.") 사진을 뒤집자.. 에에...뭐여ㅑ///므ㅓ여~~~~