forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Is there any pdf reader for psp exist?

 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
clip



Joined: 25 Jul 2005
Posts: 3

PostPosted: Mon Jul 25, 2005 4:44 am    Post subject: Is there any pdf reader for psp exist? Reply with quote

or someone is developing one?
Back to top
View user's profile Send private message
rest05



Joined: 09 Jul 2005
Posts: 12

PostPosted: Mon Jul 25, 2005 5:14 am    Post subject: yea Reply with quote

i need one too, i was trying pixie but i dont really find it useful.
Back to top
View user's profile Send private message Send e-mail
Agoln



Joined: 08 Jun 2005
Posts: 326
Location: Fort Wayne, IN

PostPosted: Tue Jul 26, 2005 12:20 am    Post subject: Reply with quote

search for ebook in the forums.
_________________
Lego of my Ago!
Back to top
View user's profile Send private message AIM Address
sasq



Joined: 29 Jun 2005
Posts: 16

PostPosted: Tue Jul 26, 2005 1:10 am    Post subject: Reply with quote

There are none and I don't think one will turn up in the foreseeable future - the best soloution is probably to convert PDF to JPG and view it as pictures.

(You really should try to learn what is hard to do and what is not. Rendering PDFs is hard.)
Back to top
View user's profile Send private message
clip



Joined: 25 Jul 2005
Posts: 3

PostPosted: Tue Jul 26, 2005 4:01 pm    Post subject: Reply with quote

yes, I guess it's hard.
how about a .chm reader?
Back to top
View user's profile Send private message
Agoln



Joined: 08 Jun 2005
Posts: 326
Location: Fort Wayne, IN

PostPosted: Wed Jul 27, 2005 1:26 am    Post subject: Reply with quote

clip wrote:
yes, I guess it's hard.
how about a .chm reader?


Nope, but would be glad to hear when you are finished with making it :)
_________________
Lego of my Ago!
Back to top
View user's profile Send private message AIM Address
sexdwarf



Joined: 14 Jul 2005
Posts: 34

PostPosted: Wed Jul 27, 2005 1:49 am    Post subject: Reply with quote

i've got plans to work on a pdf reader once i get my wave library completed (tonight)...
_________________
...isn't it nice, sugar and spice...
...luring disco dollies to a life of vice...
Back to top
View user's profile Send private message
rest05



Joined: 09 Jul 2005
Posts: 12

PostPosted: Wed Jul 27, 2005 4:07 am    Post subject: nice Reply with quote

Quote:
i've got plans to work on a pdf reader once i get my wave library completed (tonight)...

nice to hear this hope it happens
_________________
www.hackmypsp.com
Back to top
View user's profile Send private message Send e-mail
Arwin



Joined: 12 Jul 2005
Posts: 426

PostPosted: Wed Jul 27, 2005 8:09 am    Post subject: Reply with quote

the format description is available, at least. In theory, it seems to be doable - you could start with just displaying the text and then work your way up. And the good thing is that the fonts are usually embedded, and if the Pixie reader comes with sources, that'd be a great place to start.

I've actually been looking into pdfs a bit before. The simple ones I have no problems with, but the ones I don't quite understand is the ones where the text consist of weird streams. How are they encoded? The documentation doesn't really say much about it - if it had really been just text with layout then I should be able to see the characters as ansi, but unlike the pdf descriptor tags (subject, author, renderware, etc.) I can't decypher them. I don't recognise them as transposed unicode either, so what remains is that I guess that PDFs created by converting PostScript printout doesn't in fact contain characters but it contains graphics descriptors with lines and coordinates of fonts that have been drawn by the computer and are sent as vector graphics data to the printer. This is then converted to a description that the PDF document can read.

Anyone care to enlighten me?
Back to top
View user's profile Send private message
sasq



Joined: 29 Jun 2005
Posts: 16

PostPosted: Wed Jul 27, 2005 9:56 am    Post subject: Reply with quote

First of all you I think the idea if writing a pdf-renderer from scratch is pretty insane, especially if you want it to render somewhat correctly. Rendering text "properly" is very tricky as I've come to realize lately.

chm is just packed html so thats equivalent of wrting a html browser, again not something you do over a weekend.
Back to top
View user's profile Send private message
mirrorsawlljk



Joined: 17 Jul 2005
Posts: 5

PostPosted: Wed Jul 27, 2005 12:53 pm    Post subject: Reply with quote

Doesn's openoffice have a PDF rendering engine? That's open source, so it might be something to look at for example code.
Back to top
View user's profile Send private message
liquid8d



Joined: 30 Jun 2005
Posts: 66

PostPosted: Wed Jul 27, 2005 1:37 pm    Post subject: Reply with quote

Just to hold anyone over until someone does.. just found this today..

http://pdf2psp.sourceforge.net/

Converts pdfs to images and gives some options for image layout

EDIT: MacOS X only

LiQuiD8d
Back to top
View user's profile Send private message AIM Address
clip



Joined: 25 Jul 2005
Posts: 3

PostPosted: Wed Jul 27, 2005 4:37 pm    Post subject: Reply with quote

sexdwarf wrote:
i've got plans to work on a pdf reader once i get my wave library completed (tonight)...

cool! keep us updated, I think it will be extremely valuable!
Back to top
View user's profile Send private message
jpadams



Joined: 02 Jul 2005
Posts: 23
Location: Los Angeles

PostPosted: Thu Jul 28, 2005 4:31 am    Post subject: Reply with quote

you might want to look at this ?
http://poppler.freedesktop.org/
its a PDF rendering lib opensourced
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
sexdwarf



Joined: 14 Jul 2005
Posts: 34

PostPosted: Thu Jul 28, 2005 5:17 am    Post subject: Reply with quote

jpadams wrote:
you might want to look at this ?
http://poppler.freedesktop.org/
its a PDF rendering lib opensourced


i'm trying to stay away from anything x based, and am working with a library at the moment that should be an easy port... rendering things properly is what i am concerned about...
_________________
...isn't it nice, sugar and spice...
...luring disco dollies to a life of vice...
Back to top
View user's profile Send private message
Arwin



Joined: 12 Jul 2005
Posts: 426

PostPosted: Thu Jul 28, 2005 6:38 am    Post subject: Reply with quote

sexdwarf wrote:
jpadams wrote:
you might want to look at this ?
http://poppler.freedesktop.org/
its a PDF rendering lib opensourced


i'm trying to stay away from anything x based, and am working with a library at the moment that should be an easy port... rendering things properly is what i am concerned about...


If there is anything I can do to help ...
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group