if (!tif)
{
if (verbose)
- wxLogError( _("Error loading TIFF image.") );
+ wxLogError( _("TIFF: Error loading image.") );
return FALSE;
}
if (!raster)
{
if (verbose)
- wxLogError( _("Not enough memory for loading TIFF image.") );
+ wxLogError( _("TIFF: Couldn't allocate memory.") );
return FALSE;
}
if (!image->Ok())
{
if (verbose)
- wxLogError( _("Not enough memory for loading TIFF image.") );
+ wxLogError( _("TIFF: Couldn't allocate memory.") );
_TIFFfree( raster );
if (!TIFFReadRGBAImage( tif, w, h, raster, 0 ))
{
if (verbose)
- wxLogError( _("Error reading TIFF image.") );
+ wxLogError( _("TIFF: Error reading image.") );
_TIFFfree( raster );
image->Destroy();