function imtext=text2im(text)
% text2im - generates an image, containing the input text
% Code courtesy of Matlab central from author Tobias Kiessling.
text=text+0; % converting string into Ascii-number array
laenge=length(text);
imtext=zeros(20,18*laenge); % Preparing the resulting image
for i=1:laenge
code=text(i); % Ascii code of i.th letter
if code==0
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % .
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % .
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % .
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; %
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % I Complete
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % I List of all
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % \ I / 256 ASCII
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % \I/ Letters
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % V
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; %
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % .
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % .
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1; % .
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==1
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1;
0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1;
0,0,1,1,0,0,1,1,1,1,0,0,1,1,0,0,1,1;
0,0,1,1,0,0,1,1,1,1,0,0,1,1,0,0,1,1;
0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1;
0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1;
0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1;
0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1;
0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,1,1;
0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,1,1;
0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1;
0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==2
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,1;
0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1;
0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1;
0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==3
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,0,0,0,0,1,1,0,0,0,0,1,1,1,1;
1,1,1,1,0,0,0,0,1,1,0,0,0,0,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==4
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==5
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,1;
1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==6
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==7
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
elseif code==8
TxtIm=[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1;
0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1;
0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1;
0,0,0,0,1,1,1