mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
0025815: Visualization - emit error message in case of texture loading fail
Added error message in case when texture cannot be loaded from file.
This commit is contained in:
parent
9dfbbfe673
commit
0c015ee26c
@ -23,6 +23,8 @@
|
|||||||
|
|
||||||
#include <Image_AlienPixMap.hxx>
|
#include <Image_AlienPixMap.hxx>
|
||||||
#include <gp.hxx>
|
#include <gp.hxx>
|
||||||
|
#include <Message.hxx>
|
||||||
|
#include <Message_Messenger.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
#include <TCollection_ExtendedString.hxx>
|
#include <TCollection_ExtendedString.hxx>
|
||||||
#include <OSD_OpenFile.hxx>
|
#include <OSD_OpenFile.hxx>
|
||||||
@ -262,7 +264,10 @@ bool Image_AlienPixMap::Load (const TCollection_AsciiString& theImagePath)
|
|||||||
}
|
}
|
||||||
if ((aFIF == FIF_UNKNOWN) || !FreeImage_FIFSupportsReading (aFIF))
|
if ((aFIF == FIF_UNKNOWN) || !FreeImage_FIFSupportsReading (aFIF))
|
||||||
{
|
{
|
||||||
// unsupported image format
|
TCollection_AsciiString aMessage = "Error: image file '";
|
||||||
|
aMessage.AssignCat (theImagePath);
|
||||||
|
aMessage.AssignCat ("' has unsupported file format.");
|
||||||
|
::Message::DefaultMessenger()->Send (aMessage, Message_Fail);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,6 +290,10 @@ bool Image_AlienPixMap::Load (const TCollection_AsciiString& theImagePath)
|
|||||||
#endif
|
#endif
|
||||||
if (anImage == NULL)
|
if (anImage == NULL)
|
||||||
{
|
{
|
||||||
|
TCollection_AsciiString aMessage = "Error: image file '";
|
||||||
|
aMessage.AssignCat (theImagePath);
|
||||||
|
aMessage.AssignCat ("' is missing or invalid.");
|
||||||
|
::Message::DefaultMessenger()->Send (aMessage, Message_Fail);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -294,6 +303,10 @@ bool Image_AlienPixMap::Load (const TCollection_AsciiString& theImagePath)
|
|||||||
if (aFormat == Image_PixMap::ImgUNKNOWN)
|
if (aFormat == Image_PixMap::ImgUNKNOWN)
|
||||||
{
|
{
|
||||||
//anImage = FreeImage_ConvertTo24Bits (anImage);
|
//anImage = FreeImage_ConvertTo24Bits (anImage);
|
||||||
|
TCollection_AsciiString aMessage = "Error: image file '";
|
||||||
|
aMessage.AssignCat (theImagePath);
|
||||||
|
aMessage.AssignCat ("' has unsupported pixel format.");
|
||||||
|
::Message::DefaultMessenger()->Send (aMessage, Message_Fail);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user