Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 07-30-2018, 07:51 PM   #16
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
That's (the game of) life.
or
Maybe your K3 has detected an Alien life form.
knc1 is offline   Reply With Quote
Old 07-30-2018, 08:07 PM   #17
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
@PoP: I'll double-check, but I fixed a bunch of stupid things around "large" font multipliers, so that may already be taken care of (and by taken care of that might mean the max value will be clamped to the largest safe value ).
NiLuJe is offline   Reply With Quote
Advert
Old 07-30-2018, 08:13 PM   #18
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
@PoP: Yeah, it's "fixed" in master:

Code:
[FBInk] Clamped font size multiplier from 37 to 25
(Basically, there's a few gnarly interactions at "high" values, which may produce at a few key points of the code: overflows, divisions by zeros, blowing the stack. The easiest way to tame everything in one fell swoop is to ensure that the maximum allowed font size allows us to draw at least a 3x3 grid).

The double X was probably a side-effect of an overflow wraparound .
(I don't remember if that was already fixed in the latest release or not, but if you pushed the value a bit, you'd hit a SIGFPE because of the division by 0 I mentioned earlier ^^).

EDIT: I can *probably* fine-tune it a bit, if you really want to play w/ higher values .

EDIT²: Done, it'll honor the settings, so you can push things to the actual max when centering is disabled.

Code:
./fbink -cp -S 100 XX -F tall

[FBInk] Variable fb info: 600x800, 4bpp @ rotation: 0 (Upright, 0°)
[FBInk] Clamped font size multiplier from 100 to 50
[FBInk] Fontsize set to 400x800
[FBInk] Line length: 1 cols, Page size: 1 rows
[FBInk] Fixed fb info: ID is "eink_fb", length of fb mem: 483328 bytes & line length: 300 bytes
[FBInk] Kernel's HZ value appears to be 100
Printing string 'XX' @ column 0, row 0 (inverted: false, flashing: false, centered: false, left padded: true, clear screen: true, font scaling: x100)
Code:
./fbink -cp -S 100 XX

[FBInk] Variable fb info: 600x800, 4bpp @ rotation: 0 (Upright, 0°)
[FBInk] Clamped font size multiplier from 100 to 75
[FBInk] Fontsize set to 600x600
[FBInk] Line length: 1 cols, Page size: 1 rows
[FBInk] It's a perfect fit!
[FBInk] Fixed fb info: ID is "eink_fb", length of fb mem: 483328 bytes & line length: 300 bytes
[FBInk] Kernel's HZ value appears to be 100
Printing string 'XX' @ column 0, row 0 (inverted: false, flashing: false, centered: false, left padded: true, clear screen: true, font scaling: x100)
But

Code:
./fbink -cmp -S 100 XX

[FBInk] Variable fb info: 600x800, 4bpp @ rotation: 0 (Upright, 0°)
[FBInk] Clamped font size multiplier from 100 to 37
[FBInk] Fontsize set to 296x296
[FBInk] Line length: 2 cols, Page size: 2 rows
[FBInk] Fixed fb info: ID is "eink_fb", length of fb mem: 483328 bytes & line length: 300 bytes
[FBInk] Kernel's HZ value appears to be 100
Printing string 'XX' @ column 0, row 0 (inverted: false, flashing: false, centered: true, left padded: true, clear screen: true, font scaling: x100)
Code:
./fbink -cmp -S 100 XX -F tall

[FBInk] Variable fb info: 600x800, 4bpp @ rotation: 0 (Upright, 0°)
[FBInk] Clamped font size multiplier from 100 to 37
[FBInk] Fontsize set to 296x592
[FBInk] Line length: 2 cols, Page size: 1 rows
[FBInk] Fixed fb info: ID is "eink_fb", length of fb mem: 483328 bytes & line length: 300 bytes
[FBInk] Kernel's HZ value appears to be 100
Printing string 'XX' @ column 0, row 0 (inverted: false, flashing: false, centered: true, left padded: true, clear screen: true, font scaling: x100)
Attached Thumbnails
Click image for larger version

Name:	xtall.png
Views:	383
Size:	3.7 KB
ID:	165318   Click image for larger version

Name:	xibm.png
Views:	362
Size:	3.7 KB
ID:	165319   Click image for larger version

Name:	xcentered.png
Views:	360
Size:	3.8 KB
ID:	165320   Click image for larger version

Name:	xtallcentered.png
Views:	355
Size:	3.7 KB
ID:	165321  

Last edited by NiLuJe; 07-30-2018 at 09:18 PM.
NiLuJe is offline   Reply With Quote
Old 07-31-2018, 06:47 AM   #19
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,002
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
^ Thank you. Respect!

Now I can zoom to the max on alien Life from the UNSCII private area U+EC2B to U+EC30 Click image for larger version

Name:	alien.png
Views:	399
Size:	1.1 KB
ID:	165327

(Just kidding, I know you did not convert these )
PoP is offline   Reply With Quote
Old 07-31-2018, 11:02 AM   #20
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
That X alone was starting to look like a space invader... ;o).
NiLuJe is offline   Reply With Quote
Advert
Old 08-02-2018, 04:32 PM   #21
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
Released v1.2.6 .

A few code cleanups & tweaks, and the aforementioned fix for potentially broken behavior at high font scaling values .
NiLuJe is offline   Reply With Quote
Old 08-11-2018, 11:31 AM   #22
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,002
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
Block Style Writing

When I saw a tweet using these blocky letters,
Click image for larger version

Name:	4x4 Block Shapes.png
Views:	396
Size:	116.4 KB
ID:	165519


I thought it would be nice to make fbink print in that style.
Click image for larger version

Name:	Screenshot ascii.txt PW3.png
Views:	407
Size:	10.1 KB
ID:	165522
Spoiler:

Code:
sweep
sweep:
Code:
#!/bin/sh
#implied PATH=$PATH':./'
cd /mnt/us
#Bug? or shell kwirk:
#  Must not start the ascii inline string with a space. 
#  starting with a space (as an ascii sweep should) doesn't cause fbink to print it!
#  block 0 0 2  $(cat ascii.txt) -c does work even even the ascii.txt file starts with a space
fbink -c "."
block 0 0 2  $(cat <<'EOF')
.!"#$%&'()*+,-./0123456789:;<=>@ABCDEFGHIJKLMNOPQRowsTUVWXYZ[\]^_`{|}~
EOF
screenshot


Ready to try? Then
Click image for larger version

Name:	123GO.gif
Views:	417
Size:	14.1 KB
ID:	165520
Spoiler:

Code:
123GO
123GO:
Code:
#!/bin/sh
#
#Prints the "ready to try?" screenshots for assembling the gif animation

cd /mnt/us
#implied PATH=$PATH':./'

block 8 4 5 "1" -c
screenshot
usleep 500000

block 8 4 5 "1.2"
screenshot
usleep 500000

block 8 4 5 "1.2.3"
screenshot
usleep 500000

block 2 5 13 "GO!"
screenshot
usleep 500000


somewhat buggy

[EDIT 2021-03-31] don't miss version 0.20 here
Attached Files
File Type: zip 2018-08-11 block v0.9.zip (3.8 KB, 339 views)

Last edited by PoP; 03-31-2021 at 01:32 PM.
PoP is offline   Reply With Quote
Old 08-11-2018, 04:04 PM   #23
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
@PoP: That's insane, I love it! ;p.

The other, non-scalable approach is a glyph per PNG w/ transparency.

Or going the extra mile and encoding that as a proper font in the Hex format, which we can then convert & bundle in fbink .

Sidebar: this works on my end:

Code:
./fbink '' 2>&1 | grep Line | sed 's/.*Line length: \(.*\) cols.*/\1/'
47

./fbink '' 2>&1 | grep Line | sed 's/.*Page size: \(.*\) rows/\1/'
64
:?

----

If not, I can easily add a flag that outputs the config in a single eval'able line?

EDIT: Done, might come in handy, and was trivial to implement.

Code:
./fbink -qe
viewWidth=758;viewHeight=1024;BPP=8;FONTW=16;FONTH=16;FONTSIZE_MULT=2;MAXCOLS=47;MAXROWS=64;isPerfectFit=0;FBID=mxc_epdc_fb;USER_HZ=100#

Last edited by NiLuJe; 08-11-2018 at 09:45 PM.
NiLuJe is offline   Reply With Quote
Old 08-12-2018, 06:52 AM   #24
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,002
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
Quote:
Originally Posted by NiLuJe View Post
@PoP: That's insane, I love it! ;p.

The other, non-scalable approach is a glyph per PNG w/ transparency.

Or going the extra mile and encoding that as a proper font in the Hex format, which we can then convert & bundle in fbink .
...
Sidebar
...
I think it is fun to keep the scaling. Building in a 32x32 pixels font would be ideal, a worthy extra mile for special effects. Would you need some manpower?


Sidebar:

Yes I know, it is the assignment to a variable that gives me an unterminated quoted string shell error.

I will gladly use your new ./fbink -qe one liner and stop fighting puzzling shell substitutions.

Code:
[root@kindle us]# fbink '' 2>&1 | grep Line | sed 's/.*Line length: \(.*\) cols.
*/\1/'
44
[root@kindle us]# MC="$(fbink '' 2>&1 | grep Line | sed 's/.*Line length: \(.*\)
 cols.*/\1/'"
>
PoP is offline   Reply With Quote
Old 08-12-2018, 02:07 PM   #25
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
The giant comment block in hextoc.py has a link to the Unifont stuff, if you want to look into it.

(The higher the grid-size, the longer you'll have to spend working per-glyph, obviously . But a higher base grid-size should not be an issue for FBInk, as the 8x16 Unscii Tall variant proved .).
NiLuJe is offline   Reply With Quote
Old 08-12-2018, 05:18 PM   #26
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,002
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
^
OK I'll have a look.

In the mean time, not knowing the format, I prepared 32x32 Block Font.txt, could you use this?
PoP is offline   Reply With Quote
Old 08-12-2018, 06:13 PM   #27
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
Hmmm, a higher horizontal resolution means a different data type (here, uint32_t instead of uint8_t), which is moderately more annoying to handle...

But other than that, yeah, that works.

Code:
row="........########................"
row.replace('.', '0')
row.replace('#', '1')
hex = '%0*X' % ((len(row) + 3) // 4, int(row, 2))

00FF0000

Last edited by NiLuJe; 08-12-2018 at 07:39 PM.
NiLuJe is offline   Reply With Quote
Old 08-12-2018, 07:40 PM   #28
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
Yup, got a test glyph working .

Now you get to choose a name for it .
NiLuJe is offline   Reply With Quote
Old 08-12-2018, 08:54 PM   #29
PoP
 curly᷂͓̫̙᷊̥̮̾ͯͤͭͬͦͨ ʎʌɹnɔ
PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.PoP ought to be getting tired of karma fortunes by now.
 
PoP's Avatar
 
Posts: 3,002
Karma: 50506927
Join Date: Dec 2010
Location: ♁ ᴺ₄₅°₃₀' ᵂ₇₃°₃₇' ±₆₀"
Device: K3₃.₄.₃ PW3&4₅.₁₃.₃
Already!!

Quote:
Originally Posted by NiLuJe View Post
...
Now you get to choose a name for it .
"BLOCK", "TWEET", "ATOM", "V127", "PoP", Came to mind. Maybe "☐" or "6⃣ " to make it cryptic .

Anyway, you can choose too, it is yours now.

Last edited by PoP; 08-12-2018 at 09:07 PM. Reason: cryptified even more ☐ into 6⃣ ...for 6 atomic blocks
PoP is offline   Reply With Quote
Old 08-12-2018, 09:53 PM   #30
NiLuJe
BLAM!
NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.NiLuJe ought to be getting tired of karma fortunes by now.
 
NiLuJe's Avatar
 
Posts: 13,477
Karma: 26012494
Join Date: Jun 2010
Location: Paris, France
Device: Kindle 2i, 3g, 4, 5w, PW, PW2, PW5; Kobo H2O, Forma, Elipsa, Sage, C2E
@PoP: And there we go .

I wouldn't mind a full set of lowercase letters, when you have the chance .
(Some glyphs might need "kerning" tweaks, at a quick glance, some digits, for instance: printing "1234" makes it somewhat obvious ^^).

EDIT: Also, the last four characters have the wrong codepoint .

Found a minor bug in the conversion script while working on this, and this lays the groundwork for making BDF conversions even easier now . Everybody wins! .

EDIT²: Yuuup, BDF conversions are a definite go! .

Last edited by NiLuJe; 08-13-2018 at 06:46 PM.
NiLuJe is offline   Reply With Quote
Reply

Tags
eips, fbink


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
FBInk: A small tool/library to print crap on your screen! NiLuJe Kobo Developer's Corner 282 Yesterday 02:51 AM
Small print Broadback Conversion 12 12-12-2011 02:31 PM
Small Tool to change book order (PRS-x50) goaspy Sony Reader 113 10-14-2011 03:28 PM
small print breezeman Introduce Yourself 13 07-03-2011 09:02 AM


All times are GMT -4. The time now is 02:48 PM.


MobileRead.com is a privately owned, operated and funded community.