Thema: Delphi GraphicEx und PSD

Einzelnen Beitrag anzeigen

Benutzerbild von Bambuti2000
Bambuti2000

Registriert seit: 11. Okt 2007
Ort: Troisdorf
44 Beiträge
 
Delphi XE2 Architect
 
#3

AW: GraphicEx und PSD

  Alt 2. Aug 2012, 13:11
Danke, das war der Hinweis der mir gefehlt hatte...

aus
Delphi-Quellcode:
type
  TPSDHeader = packed record
    Signature: array[0..3] of Char; // always '8BPS'
    ...
  end;
werde
Delphi-Quellcode:
type
  TPSDHeader = packed record
    Signature: array[0..3] of AnsiChar; // always '8BPS'
    ...
  end;
und alles ist Gut.

Danke, danke, danke, ...
Stefan
  Mit Zitat antworten Zitat