JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
TGAImage Class Reference

#include <TgaTool.h>

Public Member Functions

 TGAImage (void)
 
virtual ~TGAImage (void)
 
void init (void)
 グラフィックデータは解放しない
 
bool isNull (void)
 グラフィックデータを持っていないか?
 
void clear (void)
 全空間を画素値 0 にする
 
void fill (uByte v=(uByte) 0)
 全空間を画素値 v にする
 
void free (void)
 グラフィックデータを開放する
 
uBytepoint (int x, int y, int c)
 
void getm (int x, int y, int c)
 
void setzero (int x, int y, int c)
 

Public Attributes

int xs
 
int ys
 
int col
 
int length
 
int state
 
uByte hd [TGA_HEADER_SIZE]
 
uByte ft [TGA_FOOTER_SIZE]
 
uBytegp
 

Detailed Description

Definition at line 27 of file TgaTool.h.

Constructor & Destructor Documentation

◆ TGAImage()

TGAImage ( void )
inline

Definition at line 41 of file TgaTool.h.

41{ init();}
void init(void)
グラフィックデータは解放しない
Definition TgaTool.cpp:20

References TGAImage::init().

Here is the call graph for this function:

◆ ~TGAImage()

virtual ~TGAImage ( void )
inlinevirtual

Definition at line 42 of file TgaTool.h.

42{}

Member Function Documentation

◆ clear()

void clear ( void )

void TGAImage::clear(void)

Definition at line 55 of file TgaTool.cpp.

56{
57 if (gp!=NULL) memset(gp, 0, xs*ys*col);
58 return;
59}
uByte * gp
Definition TgaTool.h:38

References TGAImage::col, TGAImage::gp, TGAImage::xs, and TGAImage::ys.

◆ fill()

void fill ( uByte v = (uByte)0)

void TGAImage::fill(uByte v)

Definition at line 65 of file TgaTool.cpp.

66{
67 if (gp!=NULL) memset(gp, v, xs*ys*col);
68 return;
69}

References TGAImage::col, TGAImage::gp, TGAImage::xs, and TGAImage::ys.

◆ free()

void free ( void )

void TGAImage::free(void)

グラフィックデータを開放する

Definition at line 77 of file TgaTool.cpp.

78{
79 if (gp!=NULL) ::free(gp);
80 init();
81
82 return;
83}
void free(void)
グラフィックデータを開放する
Definition TgaTool.cpp:77

References TGAImage::free(), TGAImage::gp, and TGAImage::init().

Referenced by TGAImage::free(), jbxl::MSGraph2TGAImage(), and jbxl::readTGAData().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ getm()

void getm ( int x,
int y,
int c )

void TGAImage::getm(int x, int y, int c)

Definition at line 108 of file TgaTool.cpp.

109{
110 gp = (uByte*)malloc(x*y*c);
111 if (gp==NULL) {
113 return;
114 }
115 memset(gp, 0, x*y*c);
116
117 return;
118}
unsigned char uByte
1Byte
Definition common.h:332
#define JBXL_GRAPH_MEMORY_ERROR
メモリエラー
Definition jbxl_state.h:170

References TGAImage::gp, JBXL_GRAPH_MEMORY_ERROR, and TGAImage::state.

Referenced by TGAImage::setzero().

Here is the caller graph for this function:

◆ init()

void init ( void )

void TGAImage::init(void)

メンバ変数を初期化する.

Definition at line 20 of file TgaTool.cpp.

21{
22 xs = 0;
23 ys = 0;
24 col = 0;
25 length = 0;
26 state = 0;
27 gp = NULL;
28
29 memset(hd, 0, TGA_HEADER_SIZE);
30 memset(ft, 0, TGA_FOOTER_SIZE);
31
32 int len = (int)strlen(TGA_FOOTER_STR) + 1;
33 int pos = TGA_FOOTER_SIZE - len;
34 memcpy(ft + pos, TGA_FOOTER_STR, len);
35
36 return;
37}
#define TGA_HEADER_SIZE
Definition TgaTool.h:16
#define TGA_FOOTER_STR
Definition TgaTool.h:18
#define TGA_FOOTER_SIZE
Definition TgaTool.h:17
uByte ft[TGA_FOOTER_SIZE]
Definition TgaTool.h:37
uByte hd[TGA_HEADER_SIZE]
Definition TgaTool.h:36

References TGAImage::col, TGAImage::ft, TGAImage::gp, TGAImage::hd, TGAImage::length, TGAImage::state, TGA_FOOTER_SIZE, TGA_FOOTER_STR, TGA_HEADER_SIZE, TGAImage::xs, and TGAImage::ys.

Referenced by TGAImage::free(), jbxl::MSGraph2TGAImage(), and TGAImage::TGAImage().

Here is the caller graph for this function:

◆ isNull()

bool isNull ( void )

bool TGAImage::isNull(void)

グラフィックデータを持いないか?

Definition at line 45 of file TgaTool.cpp.

46{
47 if (gp==NULL) return true;
48 return false;
49}

References TGAImage::gp.

Referenced by jbxl::MSGraph2TGAImage(), and jbxl::TGAImage2MSGraph().

Here is the caller graph for this function:

◆ point()

uByte & point ( int x,
int y,
int c )
inline

Definition at line 50 of file TgaTool.h.

50{ return gp[col*(y*xs + x) + c];}

References TGAImage::col, TGAImage::gp, and TGAImage::xs.

Referenced by jbxl::MSGraph2TGAImage(), and jbxl::TGAImage2MSGraph().

Here is the caller graph for this function:

◆ setzero()

void setzero ( int x,
int y,
int c )

void TGAImage::setzero(int x, int y, int c)

Definition at line 89 of file TgaTool.cpp.

90{
91 getm(x, y, c);
92 if (gp==NULL) return;
93
94 xs = x;
95 ys = y;
96 col = c;
97 state = 0;
98
99 memset(gp, 0, xs*ys*col);
100
101 return;
102}
void getm(int x, int y, int c)
Definition TgaTool.cpp:108

References TGAImage::col, TGAImage::getm(), TGAImage::gp, TGAImage::state, TGAImage::xs, and TGAImage::ys.

Referenced by jbxl::MSGraph2TGAImage().

Here is the call graph for this function:
Here is the caller graph for this function:

Member Data Documentation

◆ col

◆ ft

Definition at line 37 of file TgaTool.h.

Referenced by TGAImage::init(), jbxl::readTGAData(), and jbxl::writeTGAData().

◆ gp

◆ hd

◆ length

◆ state

◆ xs

◆ ys


The documentation for this class was generated from the following files: