mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 14:08:19 +00:00
8f7055f694
- `LoadPNG` -> `LoadPng` - `SavePNG` -> `SavePng` - `LoadSkinPNG` -> `LoadSkinPng`
89 lines
2.1 KiB
C++
89 lines
2.1 KiB
C++
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
|
#include <base/logger.h>
|
|
#include <base/system.h>
|
|
#include <engine/gfx/image_loader.h>
|
|
#include <engine/gfx/image_manipulation.h>
|
|
#include <engine/graphics.h>
|
|
|
|
int DilateFile(const char *pFilename)
|
|
{
|
|
IOHANDLE File = io_open(pFilename, IOFLAG_READ);
|
|
if(File)
|
|
{
|
|
io_seek(File, 0, IOSEEK_END);
|
|
long int FileSize = io_tell(File);
|
|
if(FileSize <= 0)
|
|
{
|
|
io_close(File);
|
|
dbg_msg("dilate", "failed to get file size (%ld). filename='%s'", FileSize, pFilename);
|
|
return false;
|
|
}
|
|
io_seek(File, 0, IOSEEK_START);
|
|
TImageByteBuffer ByteBuffer;
|
|
SImageByteBuffer ImageByteBuffer(&ByteBuffer);
|
|
|
|
ByteBuffer.resize(FileSize);
|
|
io_read(File, &ByteBuffer.front(), FileSize);
|
|
|
|
io_close(File);
|
|
|
|
CImageInfo Img;
|
|
EImageFormat ImageFormat;
|
|
int PngliteIncompatible;
|
|
if(LoadPng(ImageByteBuffer, pFilename, PngliteIncompatible, Img.m_Width, Img.m_Height, Img.m_pData, ImageFormat))
|
|
{
|
|
if(ImageFormat != IMAGE_FORMAT_RGBA)
|
|
{
|
|
free(Img.m_pData);
|
|
dbg_msg("dilate", "%s: not an RGBA image", pFilename);
|
|
return -1;
|
|
}
|
|
|
|
DilateImage(Img.m_pData, Img.m_Width, Img.m_Height);
|
|
|
|
// save here
|
|
IOHANDLE SaveFile = io_open(pFilename, IOFLAG_WRITE);
|
|
if(SaveFile)
|
|
{
|
|
TImageByteBuffer ByteBuffer2;
|
|
SImageByteBuffer ImageByteBuffer2(&ByteBuffer2);
|
|
|
|
if(SavePng(IMAGE_FORMAT_RGBA, Img.m_pData, ImageByteBuffer2, Img.m_Width, Img.m_Height))
|
|
io_write(SaveFile, &ByteBuffer2.front(), ByteBuffer2.size());
|
|
io_close(SaveFile);
|
|
|
|
free(Img.m_pData);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
dbg_msg("dilate", "failed unknown image format: %s", pFilename);
|
|
return -1;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
dbg_msg("dilate", "failed to open image file. filename='%s'", pFilename);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, const char **argv)
|
|
{
|
|
CCmdlineFix CmdlineFix(&argc, &argv);
|
|
log_set_global_logger_default();
|
|
if(argc == 1)
|
|
{
|
|
dbg_msg("usage", "%s FILE1 [ FILE2... ]", argv[0]);
|
|
return -1;
|
|
}
|
|
|
|
for(int i = 1; i < argc; i++)
|
|
DilateFile(argv[i]);
|
|
|
|
return 0;
|
|
}
|