Issue 7 printed and uploaded
This commit is contained in:
BIN
issue06/OrderNow.png
Normal file
BIN
issue06/OrderNow.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
330
issue06/img/qr.eps
Normal file
330
issue06/img/qr.eps
Normal file
@@ -0,0 +1,330 @@
|
||||
%!PS-Adobe-3.0 EPSF-3.0
|
||||
%%Creator: (ImageMagick)
|
||||
%%Title: (img/qr.eps)
|
||||
%%CreationDate: (2025-08-28T05:48:00+00:00)
|
||||
%%BoundingBox: -0 -0 123 123
|
||||
%%HiResBoundingBox: 0 0 123.034 123.034
|
||||
%%DocumentData: Clean7Bit
|
||||
%%LanguageLevel: 1
|
||||
%%Pages: 1
|
||||
%%EndComments
|
||||
|
||||
%%BeginDefaults
|
||||
%%EndDefaults
|
||||
|
||||
%%BeginProlog
|
||||
%
|
||||
% Display a color image. The image is displayed in color on
|
||||
% Postscript viewers or printers that support color, otherwise
|
||||
% it is displayed as grayscale.
|
||||
%
|
||||
/DirectClassPacket
|
||||
{
|
||||
%
|
||||
% Get a DirectClass packet.
|
||||
%
|
||||
% Parameters:
|
||||
% red.
|
||||
% green.
|
||||
% blue.
|
||||
% length: number of pixels minus one of this color (optional).
|
||||
%
|
||||
currentfile color_packet readhexstring pop pop
|
||||
compression 0 eq
|
||||
{
|
||||
/number_pixels 3 def
|
||||
}
|
||||
{
|
||||
currentfile byte readhexstring pop 0 get
|
||||
/number_pixels exch 1 add 3 mul def
|
||||
} ifelse
|
||||
0 3 number_pixels 1 sub
|
||||
{
|
||||
pixels exch color_packet putinterval
|
||||
} for
|
||||
pixels 0 number_pixels getinterval
|
||||
} bind def
|
||||
|
||||
/DirectClassImage
|
||||
{
|
||||
%
|
||||
% Display a DirectClass image.
|
||||
%
|
||||
systemdict /colorimage known
|
||||
{
|
||||
columns rows 8
|
||||
[
|
||||
columns 0 0
|
||||
rows neg 0 rows
|
||||
]
|
||||
{ DirectClassPacket } false 3 colorimage
|
||||
}
|
||||
{
|
||||
%
|
||||
% No colorimage operator; convert to grayscale.
|
||||
%
|
||||
columns rows 8
|
||||
[
|
||||
columns 0 0
|
||||
rows neg 0 rows
|
||||
]
|
||||
{ GrayDirectClassPacket } image
|
||||
} ifelse
|
||||
} bind def
|
||||
|
||||
/GrayDirectClassPacket
|
||||
{
|
||||
%
|
||||
% Get a DirectClass packet; convert to grayscale.
|
||||
%
|
||||
% Parameters:
|
||||
% red
|
||||
% green
|
||||
% blue
|
||||
% length: number of pixels minus one of this color (optional).
|
||||
%
|
||||
currentfile color_packet readhexstring pop pop
|
||||
color_packet 0 get 0.299 mul
|
||||
color_packet 1 get 0.587 mul add
|
||||
color_packet 2 get 0.114 mul add
|
||||
cvi
|
||||
/gray_packet exch def
|
||||
compression 0 eq
|
||||
{
|
||||
/number_pixels 1 def
|
||||
}
|
||||
{
|
||||
currentfile byte readhexstring pop 0 get
|
||||
/number_pixels exch 1 add def
|
||||
} ifelse
|
||||
0 1 number_pixels 1 sub
|
||||
{
|
||||
pixels exch gray_packet put
|
||||
} for
|
||||
pixels 0 number_pixels getinterval
|
||||
} bind def
|
||||
|
||||
/GrayPseudoClassPacket
|
||||
{
|
||||
%
|
||||
% Get a PseudoClass packet; convert to grayscale.
|
||||
%
|
||||
% Parameters:
|
||||
% index: index into the colormap.
|
||||
% length: number of pixels minus one of this color (optional).
|
||||
%
|
||||
currentfile byte readhexstring pop 0 get
|
||||
/offset exch 3 mul def
|
||||
/color_packet colormap offset 3 getinterval def
|
||||
color_packet 0 get 0.299 mul
|
||||
color_packet 1 get 0.587 mul add
|
||||
color_packet 2 get 0.114 mul add
|
||||
cvi
|
||||
/gray_packet exch def
|
||||
compression 0 eq
|
||||
{
|
||||
/number_pixels 1 def
|
||||
}
|
||||
{
|
||||
currentfile byte readhexstring pop 0 get
|
||||
/number_pixels exch 1 add def
|
||||
} ifelse
|
||||
0 1 number_pixels 1 sub
|
||||
{
|
||||
pixels exch gray_packet put
|
||||
} for
|
||||
pixels 0 number_pixels getinterval
|
||||
} bind def
|
||||
|
||||
/PseudoClassPacket
|
||||
{
|
||||
%
|
||||
% Get a PseudoClass packet.
|
||||
%
|
||||
% Parameters:
|
||||
% index: index into the colormap.
|
||||
% length: number of pixels minus one of this color (optional).
|
||||
%
|
||||
currentfile byte readhexstring pop 0 get
|
||||
/offset exch 3 mul def
|
||||
/color_packet colormap offset 3 getinterval def
|
||||
compression 0 eq
|
||||
{
|
||||
/number_pixels 3 def
|
||||
}
|
||||
{
|
||||
currentfile byte readhexstring pop 0 get
|
||||
/number_pixels exch 1 add 3 mul def
|
||||
} ifelse
|
||||
0 3 number_pixels 1 sub
|
||||
{
|
||||
pixels exch color_packet putinterval
|
||||
} for
|
||||
pixels 0 number_pixels getinterval
|
||||
} bind def
|
||||
|
||||
/PseudoClassImage
|
||||
{
|
||||
%
|
||||
% Display a PseudoClass image.
|
||||
%
|
||||
% Parameters:
|
||||
% class: 0-PseudoClass or 1-Grayscale.
|
||||
%
|
||||
currentfile buffer readline pop
|
||||
token pop /class exch def pop
|
||||
class 0 gt
|
||||
{
|
||||
currentfile buffer readline pop
|
||||
token pop /depth exch def pop
|
||||
/grays columns 8 add depth sub depth mul 8 idiv string def
|
||||
columns rows depth
|
||||
[
|
||||
columns 0 0
|
||||
rows neg 0 rows
|
||||
]
|
||||
{ currentfile grays readhexstring pop } image
|
||||
}
|
||||
{
|
||||
%
|
||||
% Parameters:
|
||||
% colors: number of colors in the colormap.
|
||||
% colormap: red, green, blue color packets.
|
||||
%
|
||||
currentfile buffer readline pop
|
||||
token pop /colors exch def pop
|
||||
/colors colors 3 mul def
|
||||
/colormap colors string def
|
||||
currentfile colormap readhexstring pop pop
|
||||
systemdict /colorimage known
|
||||
{
|
||||
columns rows 8
|
||||
[
|
||||
columns 0 0
|
||||
rows neg 0 rows
|
||||
]
|
||||
{ PseudoClassPacket } false 3 colorimage
|
||||
}
|
||||
{
|
||||
%
|
||||
% No colorimage operator; convert to grayscale.
|
||||
%
|
||||
columns rows 8
|
||||
[
|
||||
columns 0 0
|
||||
rows neg 0 rows
|
||||
]
|
||||
{ GrayPseudoClassPacket } image
|
||||
} ifelse
|
||||
} ifelse
|
||||
} bind def
|
||||
|
||||
/DisplayImage
|
||||
{
|
||||
%
|
||||
% Display a DirectClass or PseudoClass image.
|
||||
%
|
||||
% Parameters:
|
||||
% x & y translation.
|
||||
% x & y scale.
|
||||
% label pointsize.
|
||||
% image label.
|
||||
% image columns & rows.
|
||||
% class: 0-DirectClass or 1-PseudoClass.
|
||||
% compression: 0-none or 1-RunlengthEncoded.
|
||||
% hex color packets.
|
||||
%
|
||||
gsave
|
||||
/buffer 512 string def
|
||||
/byte 1 string def
|
||||
/color_packet 3 string def
|
||||
/pixels 768 string def
|
||||
|
||||
currentfile buffer readline pop
|
||||
token pop /x exch def
|
||||
token pop /y exch def pop
|
||||
x y translate
|
||||
currentfile buffer readline pop
|
||||
token pop /x exch def
|
||||
token pop /y exch def pop
|
||||
currentfile buffer readline pop
|
||||
token pop /pointsize exch def pop
|
||||
x y scale
|
||||
currentfile buffer readline pop
|
||||
token pop /columns exch def
|
||||
token pop /rows exch def pop
|
||||
currentfile buffer readline pop
|
||||
token pop /class exch def pop
|
||||
currentfile buffer readline pop
|
||||
token pop /compression exch def pop
|
||||
class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
|
||||
grestore
|
||||
} bind def
|
||||
%%EndProlog
|
||||
%%Page: 1 1
|
||||
%%PageBoundingBox: 0 0 123 123
|
||||
userdict begin
|
||||
DisplayImage
|
||||
0 0
|
||||
123.034 123.034
|
||||
12
|
||||
123 123
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFF
|
||||
FFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFF
|
||||
FFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFF
|
||||
FFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFF
|
||||
FFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFF000
|
||||
007FC7FF8E00E00FC00001FFE0FFF000007FC7FF8E00E00FC00001FFE0FFF000007FC7FF8E00E0
|
||||
0FC00001FFE0FFF1FFFC7007E38FC7E001C7FFF1FFE0FFF1FFFC7007E38FC7E001C7FFF1FFE0FF
|
||||
F1FFFC7007E38FC7E001C7FFF1FFE0FFF1C01C71FFFF8E381FFFC70071FFE0FFF1C01C71FFFF8E
|
||||
381FFFC70071FFE0FFF1C01C71FFFF8E381FFFC70071FFE0FFF1C01C7E3FE00FC0FC7FC70071FF
|
||||
E0FFF1C01C7E3FE00FC0FC7FC70071FFE0FFF1C01C7E3FE00FC0FC7FC70071FFE0FFF1C01C7007
|
||||
0001FFE381C70071FFE0FFF1C01C70070001FFE381C70071FFE0FFF1C01C70070001FFE381C700
|
||||
71FFE0FFF1FFFC71C7000E38FC7FC7FFF1FFE0FFF1FFFC71C7000E38FC7FC7FFF1FFE0FFF1FFFC
|
||||
71C7000E38FC7FC7FFF1FFE0FFF0000071C71C71C71C71C00001FFE0FFF0000071C71C71C71C71
|
||||
C00001FFE0FFF0000071C71C71C71C71C00001FFE0FFFFFFFFF1C0FC0E38000FFFFFFFFFE0FFFF
|
||||
FFFFF1C0FC0E38000FFFFFFFFFE0FFFFFFFFF1C0FC0E38000FFFFFFFFFE0FFF038FC0FFFE07FF8
|
||||
E3FFC01C0FFFE0FFF038FC0FFFE07FF8E3FFC01C0FFFE0FFF038FC0FFFE07FF8E3FFC01C0FFFE0
|
||||
FFFE3F038E3FFC01FFE3F007E3F1FFE0FFFE3F038E3FFC01FFE3F007E3F1FFE0FFFE3F038E3FFC
|
||||
01FFE3F007E3F1FFE0FFF0381C0FFF007FF8FC7FC703F1FFE0FFF0381C0FFF007FF8FC7FC703F1
|
||||
FFE0FFF0381C0FFF007FF8FC7FC703F1FFE0FFF03803800703FFC70380071F81FFE0FFF0380380
|
||||
0703FFC70380071F81FFE0FFF03803800703FFC70380071F81FFE0FFF038E00FC7E38E3FE38007
|
||||
E3F1FFE0FFF038E00FC7E38E3FE38007E3F1FFE0FFF038E00FC7E38E3FE38007E3F1FFE0FFFFFF
|
||||
1FF03FFF8E000071C00001FFE0FFFFFF1FF03FFF8E000071C00001FFE0FFFFFF1FF03FFF8E0000
|
||||
71C00001FFE0FFF038E071F81FF1C7FF8038038FFFE0FFF038E071F81FF1C7FF8038038FFFE0FF
|
||||
F038E071F81FF1C7FF8038038FFFE0FFF038E3803FE07E00E07FF8E38FFFE0FFF038E3803FE07E
|
||||
00E07FF8E38FFFE0FFF038E3803FE07E00E07FF8E38FFFE0FFFFF81C7E3F038E00E070071FF1FF
|
||||
E0FFFFF81C7E3F038E00E070071FF1FFE0FFFFF81C7E3F038E00E070071FF1FFE0FFFFC0FFFE38
|
||||
1C003FFC003FE07FFFE0FFFFC0FFFE381C003FFC003FE07FFFE0FFFFC0FFFE381C003FFC003FE0
|
||||
7FFFE0FFF000E00FC700703F1C703F0381FFE0FFF000E00FC700703F1C703F0381FFE0FFF000E0
|
||||
0FC700703F1C703F0381FFE0FFF1F8FFF1F8FC0007E00007E3FFFFE0FFF1F8FFF1F8FC0007E000
|
||||
07E3FFFFE0FFF1F8FFF1F8FC0007E00007E3FFFFE0FFFE381C01FFFC7FFF00003FE38FFFE0FFFE
|
||||
381C01FFFC7FFF00003FE38FFFE0FFFE381C01FFFC7FFF00003FE38FFFE0FFFE38E3FE07E07007
|
||||
1FF007FC71FFE0FFFE38E3FE07E070071FF007FC71FFE0FFFE38E3FE07E070071FF007FC71FFE0
|
||||
FFF000FC0FFFFC7E00E07E0003F1FFE0FFF000FC0FFFFC7E00E07E0003F1FFE0FFF000FC0FFFFC
|
||||
7E00E07E0003F1FFE0FFFE07E38000E3FFC003F1FF0381FFE0FFFE07E38000E3FFC003F1FF0381
|
||||
FFE0FFFE07E38000E3FFC003F1FF0381FFE0FFF1C71C71C7E3FE0703F0001FFFFFE0FFF1C71C71
|
||||
C7E3FE0703F0001FFFFFE0FFF1C71C71C7E3FE0703F0001FFFFFE0FFFFFFFFF007007FF803F1FF
|
||||
03F1FFE0FFFFFFFFF007007FF803F1FF03F1FFE0FFFFFFFFF007007FF803F1FF03F1FFE0FFF000
|
||||
00703803F1FF1C71C7038FFFE0FFF00000703803F1FF1C71C7038FFFE0FFF00000703803F1FF1C
|
||||
71C7038FFFE0FFF1FFFC7E3F038E0703F1FF1F81FFE0FFF1FFFC7E3F038E0703F1FF1F81FFE0FF
|
||||
F1FFFC7E3F038E0703F1FF1F81FFE0FFF1C01C7FC71C0FFF0070001F8FFFE0FFF1C01C7FC71C0F
|
||||
FF0070001F8FFFE0FFF1C01C7FC71C0FFF0070001F8FFFE0FFF1C01C71FF0381C71F81C00381FF
|
||||
E0FFF1C01C71FF0381C71F81C00381FFE0FFF1C01C71FF0381C71F81C00381FFE0FFF1C01C7E07
|
||||
E3FE071C0FF80001FFE0FFF1C01C7E07E3FE071C0FF80001FFE0FFF1C01C7E07E3FE071C0FF800
|
||||
01FFE0FFF1FFFC70381FF007E000001FFFFFE0FFF1FFFC70381FF007E000001FFFFFE0FFF1FFFC
|
||||
70381FF007E000001FFFFFE0FFF0000071C0E3FFFF03F1F81F8FFFE0FFF0000071C0E3FFFF03F1
|
||||
F81F8FFFE0FFF0000071C0E3FFFF03F1F81F8FFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFF
|
||||
FFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFF
|
||||
FFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0
|
||||
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFF
|
||||
FFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFF
|
||||
FFE0FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0
|
||||
end
|
||||
%%PageTrailer
|
||||
%%Trailer
|
||||
%%EOF
|
||||
Reference in New Issue
Block a user