मैंने हाल ही में इस परियोजना को C. में लिया। नीचे दिया गया कोड निम्नलिखित है:
1) छवि के वर्तमान उन्मुखीकरण हो जाता है।
2) सभी डेटा APP1
(Exif डेटा) और APP2
(Flashpix डेटा) को खाली करके हटाता है ।
3) APP1
ओरिएंटेशन मार्कर को फिर से बनाता है और इसे मूल मूल्य पर सेट करता है।
4) पहले EOI
मार्कर (छवि का अंत ) को ढूँढता है और यदि nasasary है तो फ़ाइल को काट देता है।
पहले ध्यान देने योग्य कुछ बातें हैं:
1) इस कार्यक्रम का उपयोग मेरे Nikon कैमरे के लिए किया जाता है। निकॉन का जेपीईजी प्रारूप प्रत्येक फ़ाइल के बहुत अंत में कुछ बनाता है। वे इस डेटा को दूसरी फ़ाइल बनाकर छवि फ़ाइल के अंत में एन्कोड करते हैं EOI
। आम तौर पर छवि कार्यक्रम पहले EOI
मार्कर को पढ़ते हैं। निकॉन के पास इसके बाद की जानकारी है जो मेरे कार्यक्रम को काट देती है।
2) क्योंकि यह Nikon प्रारूप के लिए है, यह big endian
बाइट ऑर्डर को मानता है । यदि आपकी छवि फ़ाइल का उपयोग करती है little endian
, तो कुछ समायोजन किए जाने की आवश्यकता है।
3) जब ImageMagick
एक्सिफ़ डेटा को स्ट्रिप करने के लिए उपयोग करने की कोशिश की जाती है , तो मैंने देखा कि मैंने जो कुछ भी शुरू किया था उससे बड़ी फ़ाइल के साथ समाप्त हुआ। यह मुझे विश्वास दिलाता है कि आपके 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;
}
आशा है कि यह किसी की मदद करता है!