25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- function addzero(i:integer):string;
- var rs:string;
- begin
- rs:=inttohex(i, 8);
- while length(rs)<8 do rs:='0'+rs;
- result:=rs;
- end;
- var
- zz:string;
- begin
- zz:=inttostr(getz-4);
- while Length(zz)<2 do zz:='0'+zz;
- ResultURL:=GetUrlBase+zz+'/R'+addzero(GetY)+'/C'+addzero(GetX)+'.png';
- end.
|