| 123456789101112131415161718192021222324252627282930 |
- #ifndef JPEGIMAGECOLLECTION_H
- #define JPEGIMAGECOLLECTION_H
- #include "JpegImage.h"
- #include <string>
- #include <vector>
- namespace Image {
- class JpegImageCollection
- {
- public:
- JpegImageCollection(const std::vector<JpegImage>& images);
- void Save(const std::string& fileName);
- private:
- size_t m_width;
- size_t m_height;
- size_t m_strideX;
- size_t m_strideY;
- std::vector<char> m_imageData;
- };
- } // namespace Image
- #endif // JPEGIMAGECOLLECTION_H
|