English.txt
上传用户:zdp402
上传日期:2022-05-07
资源大小:101k
文件大小:2k
源码类别:

图片显示

开发平台:

Delphi

  1.   PNG_ERROR_INVALID_HEADER = 'Invalid Portable Graphics Network image, it has' +
  2.     ' an invalid file header.';
  3.   PNG_ERROR_INVALID_CHUNK_INDEX = 'The chunk index especified is out of the ' +
  4.     'range.';
  5.   PNG_ERROR_INVALID_CHUNK_CLASS_INDEX = 'The chunk class index especified is ' +
  6.     ' out of range.';
  7.   PNG_ERROR_CHUNK_INVALID_CRC = 'Can''t read the PNG image, it has corrupted ' +
  8.     'data. ';
  9.   PNG_ERROR_IHDR_NOT_FIRST = 'This PNG image is invalid, the IHDR chunk is ' +
  10.     'either not present or it isn''t the first chunk.';
  11.   PNG_ERROR_NO_IDAT = 'The current image being loaded has no data and could ' +
  12.     'not be loaded.';
  13.   PNG_ERROR_INVALID_PLTE = 'The current image being loaded has an invalid ' +
  14.     'palette!';
  15.   PNG_ERROR_INVALID_COLOR_TYPE = 'Could not read the image because it has an ' +
  16.     'unknown color type.';
  17.   PNG_ERROR_INVALID_FILTER_TYPE = 'The image could not be loaded because it ' +
  18.     'uses an unknown set of filter types.';
  19.   PNG_ERROR_INVALID_INTERLACE = 'The image has an unknown interlace method.';
  20.   PNG_ERROR_UNKOWN_CRITICAL_CHUNK = 'The currently being loaded image ' +
  21.     'contains critical(s) chunk(s) not reconized by the decoder.';
  22.   PNG_ERROR_NO_PALETTE = 'The current image requeries a palette but it is ' +
  23.     'not avaliable.';
  24.   PNG_INVALID_COLOR_TYPE = 'Can not get transparency information because ' +
  25.     'the current image color type is not RGB (value 3)';
  26.   CHUNK_NOT_CHILD = 'The especified chunk is not inside the chunk list ' +
  27.     'containing the method being used. The funcion could not be completed.';
  28.   TIME_CORRUPTED = 'Could not get informations on the tIME chunk because ' +
  29.     'it is corrupted.';
  30.   PNG_SHARE = 'What you are testing now uses TPNGImage, a Portable Graphics ' +
  31.     'network format handler made by Guba (gubah@sti.com.br). It is actually ' +
  32.     'not totally ready yet (07/01/2000), but its nice, isn''t it ?'#13#10 +
  33.     #13#10 + 'Anyway, for more information about it send mails to:'#13#10 +
  34.     'gubah@sti.com.br';
  35.   PNG_SHARE_TITLE = 'TPNGImage beta test version (gubah@sti.com.br)';