-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaccessjpeg.cpp
89 lines (75 loc) · 1.51 KB
/
accessjpeg.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Mark Watson
// CS 306
// Semester Project
#include <iostream>
#include <iomanip>
#include "accessjpeg.h"
// constructor
accessJpeg::accessJpeg()
{
// nothing here yet
}
// destructor
accessJpeg::~accessJpeg()
{
// free the memory
delete[] memblock;
}
// setfile also reads the file into memory.
bool accessJpeg::readInFile(char* in)
{
using std::ios;
std::fstream in_file(in, ios::in|ios::binary|ios::ate);
if (in_file.is_open())
{
size = in_file.tellg();
memblock = new char [size];
in_file.seekg(0, ios::beg);
in_file.read(memblock, size);
in_file.close();
// initialize ptr.
cursor = 0;
// start at beginning of jpeg pixel data
jumpToStart();
} else return false;
return true;
}
bool accessJpeg::writeOutFile(char* out)
{
using std::ios;
std::ofstream out_file(out, ios::out|ios::binary);
if (out_file.is_open())
{
out_file.write(memblock, size);
out_file.close();
} else return false;
return true;
}
// jumps to start of actual image data
// no need to encrypt the headers of the image and such...
// returns false if not a valid jpeg.
bool accessJpeg::jumpToStart()
{
for (int cnt=0;cnt < size;cnt++)
{
// 0xFFDA = start of image data
if ((unsigned char) memblock[cnt] == 0xFF &&
(unsigned char) memblock[cnt+1] == 0xDA)
{
cursor = cnt+2;
return true;
}
}
return false;
}
bool accessJpeg::hasMore()
{
return cursor < size;
}
// access a block from the memory
char * accessJpeg::accessBlock()
{
char * ret = memblock+cursor;
cursor += BLOCK_SIZE;
return ret;
}