1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#=======================================================================
# ____ ____ _____ _ ____ ___ ____
# | _ \| _ \| ___| _ _ / \ | _ \_ _| |___ \
# | |_) | | | | |_ (_) (_) / _ \ | |_) | | __) |
# | __/| |_| | _| _ _ / ___ \| __/| | / __/
# |_| |____/|_| (_) (_) /_/ \_\_| |___| |_____|
#
# $Id: TODO,v 1.2 2004/11/24 20:12:45 fredo Exp $
#
#=======================================================================
FOR ``0.41 PRODUCTION RELEASE:
- update all cjkfonts + cmaps to latest character collection
- update all corefonts to latin1-10 glyph specs
- update ttfonts to use cjk-encoding-strategy (cjk ttf)
*DONE*
- fix ttfonts for cff/opentype to pdf-1.6 spec
- add cmap support cid-based cff/opentype fonts
*DONE*
FURTHER DOWN:
- custom page labels (PDF-1.6 spec/8.3.1 Page Labels):
>By 'specify' do you mean the API or how to implement them? For the API,
>something simple would be convenient. To implement the example in the
>spec:
>
>$doc->page_labels(
> # no prefix and starts at one (1).
> 1 => 'r',
> 5 => 'd',
> # has prefix or starts > 1
> 8 => { -style => 'd',
> -prefix => 'A-',
> -start => 8 },
>);
1 0 obj <<
/Type /Catalog
/PageLabels <<
/Nums [
1 << /S /r >>
5 << /S /D >>
8 <<
/S /D
/P (A-)
/St 8
>>
]
>>
>>
endobj
|