나는 최근에이 프로젝트를 C로 착수했다. 아래 코드는 다음을 수행한다.
1) 이미지의 현재 방향을 가져옵니다.
2) APP1
(Exif 데이터)에 포함 된 모든 데이터를 제거 하고APP2
블랭킹을 통해 (Flashpix 데이터)에 .
3) 재생성 APP1
오리엔테이션 마커를 하고 원래 값으로 설정합니다.
4) 첫 번째를 찾습니다. EOI
마커 (이미지 끝)를 찾고 필요한 경우 파일을 자릅니다.
먼저 주목해야 할 사항은 다음과 같습니다.
1)이 프로그램은 내 Nikon 카메라에 사용됩니다. Nikon의 JPEG 형식은 생성하는 각 파일의 맨 끝에 무언가를 추가합니다. 두 번째 EOI
마커 를 만들어 이미지 파일의 끝에이 데이터를 인코딩합니다 . 일반적으로 이미지 프로그램은 처음까지 읽습니다.EOI
발견 된 마커 . Nikon에는 내 프로그램이 잘리는 정보가 있습니다.
2) Nikon 형식이므로 big endian
바이트 순서를 가정합니다 . 이미지 파일이를 사용하는 little endian
경우 일부 조정이 필요합니다.
3) ImageMagick
exif 데이터를 제거 하는 데 사용하려고 할 때 처음 시작한 것보다 더 큰 파일이 생성되었음을 알았습니다. 이것은 Imagemagick
제거하려는 데이터를 인코딩하고 파일의 다른 곳에 저장하고 있다고 믿게 만듭니다. 구식이라고 부르지 만 파일에서 무언가를 제거 할 때 파일 크기가 같지 않으면 더 작아야합니다. 다른 모든 결과는 데이터 마이닝을 제안합니다.
다음은 코드입니다.
#include <stdio.h>
#include <stdlib.h>
#include <libgen.h>
#include <string.h>
#include <errno.h>
// Declare constants.
#define COMMAND_SIZE 500
#define RETURN_SUCCESS 1
#define RETURN_FAILURE 0
#define WORD_SIZE 15
int check_file_jpg (void);
int check_file_path (char *file);
int get_marker (void);
char * ltoa (long num);
void process_image (char *file);
// Declare global variables.
FILE *fp;
int orientation;
char *program_name;
int main (int argc, char *argv[])
{
// Set program name for error reporting.
program_name = basename(argv[0]);
// Check for at least one argument.
if(argc < 2)
{
fprintf(stderr, "usage: %s IMAGE_FILE...\n", program_name);
exit(EXIT_FAILURE);
}
// Process all arguments.
for(int x = 1; x < argc; x++)
process_image(argv[x]);
exit(EXIT_SUCCESS);
}
void process_image (char *file)
{
char command[COMMAND_SIZE + 1];
// Check that file exists.
if(check_file_path(file) == RETURN_FAILURE)
return;
// Check that file is an actual JPEG file.
if(check_file_jpg() == RETURN_FAILURE)
{
fclose(fp);
return;
}
// Jump to orientation marker and store value.
fseek(fp, 55, SEEK_SET);
orientation = fgetc(fp);
// Recreate the APP1 marker with just the orientation tag listed.
fseek(fp, 21, SEEK_SET);
fputc(1, fp);
fputc(1, fp);
fputc(18, fp);
fputc(0, fp);
fputc(3, fp);
fputc(0, fp);
fputc(0, fp);
fputc(0, fp);
fputc(1, fp);
fputc(0, fp);
fputc(orientation, fp);
// Blank the rest of the APP1 marker with '\0'.
for(int x = 0; x < 65506; x++)
fputc(0, fp);
// Blank the second APP1 marker with '\0'.
fseek(fp, 4, SEEK_CUR);
for(int x = 0; x < 2044; x++)
fputc(0, fp);
// Blank the APP2 marker with '\0'.
fseek(fp, 4, SEEK_CUR);
for(int x = 0; x < 4092; x++)
fputc(0, fp);
// Jump the the SOS marker.
fseek(fp, 72255, SEEK_SET);
while(1)
{
// Truncate the file once the first EOI marker is found.
if(fgetc(fp) == 255 && fgetc(fp) == 217)
{
strcpy(command, "truncate -s ");
strcat(command, ltoa(ftell(fp)));
strcat(command, " ");
strcat(command, file);
fclose(fp);
system(command);
break;
}
}
}
int get_marker (void)
{
int c;
// Check to make sure marker starts with 0xFF.
if((c = fgetc(fp)) != 0xFF)
{
fprintf(stderr, "%s: get_marker: invalid marker start (should be FF, is %2X)\n", program_name, c);
return(RETURN_FAILURE);
}
// Return the next character.
return(fgetc(fp));
}
int check_file_jpg (void)
{
// Check if marker is 0xD8.
if(get_marker() != 0xD8)
{
fprintf(stderr, "%s: check_file_jpg: not a valid jpeg image\n", program_name);
return(RETURN_FAILURE);
}
return(RETURN_SUCCESS);
}
int check_file_path (char *file)
{
// Open file.
if((fp = fopen(file, "rb+")) == NULL)
{
fprintf(stderr, "%s: check_file_path: fopen failed (%s) (%s)\n", program_name, strerror(errno), file);
return(RETURN_FAILURE);
}
return(RETURN_SUCCESS);
}
char * ltoa (long num)
{
// Declare variables.
int ret;
int x = 1;
int y = 0;
static char temp[WORD_SIZE + 1];
static char word[WORD_SIZE + 1];
// Stop buffer overflow.
temp[0] = '\0';
// Keep processing until value is zero.
while(num > 0)
{
ret = num % 10;
temp[x++] = 48 + ret;
num /= 10;
}
// Reverse the word.
while(y < x)
{
word[y] = temp[x - y - 1];
y++;
}
return word;
}
이것이 누군가를 돕기를 바랍니다!