Skip to content
Snippets Groups Projects
Commit d69efbaa authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

ENH: better logic for the tilemap file format

parent ff63508d
No related branches found
No related tags found
No related merge requests found
......@@ -796,14 +796,18 @@ void TileMapImageIO::InternalWrite(double x, double y, const void* buffer)
itk::ImageIOBase::Pointer imageIO;
//Open the file to write the buffer
if (m_AddressMode == TileMapAdressingStyle::GM)
{
imageIO = itk::JPEGImageIO::New();
}
if (m_AddressMode == TileMapAdressingStyle::OSM)
{
if (m_FileSuffix == "png")
{
imageIO = itk::PNGImageIO::New();
}
}
else if (m_FileSuffix == "jpg")
{
imageIO = itk::JPEGImageIO::New();
}
else
{
itkExceptionMacro( << "TileMapImageIO : Bad addressing Style");
}
bool lCanWrite(false);
lCanWrite = imageIO->CanWriteFile(filename.str().c_str());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment