Tagged Questions
The libharu tag has no wiki summary.
4
votes
1answer
632 views
iOS PDF editing - Combining FastPDFKit / CGPDFContext and libHaru
I'm trying to add PDF Annotations onto an existing PDF file in iOS.
I understand that using FASTPDFKit / CGPDFContext, it is possible to READ ( but not EDIT ) almost all the information from an ...
2
votes
2answers
99 views
Creating PDFs from iOS text fields
I'm working on the requirements & specifications for a new iOS app intended for use by certain professionals working "in the field". All day long for weeks on end, these folks have a sizable ...
2
votes
1answer
768 views
Setting up lib haru in an iPhone project for pdf creation
has anyone ever setup lib haru on the iPhone and can tell me how to get it to work. I know there is a sample project on github (http://github.com/akisute/iPhonePDF) which uses the haru lib for ...
1
vote
1answer
200 views
Compiling libharu with Android NDK
I'm trying to compile libharu for Android. In my jni folder I've:
/jni/lpng154/ with all sources and include files for libpng;
/jni/libharu-2.2.1/ whit all sources and include files for libharu
...
1
vote
0answers
136 views
libharu HPDF_Page_TextRect utf8 character line break inside word
I just recognized a weird issue within the libharu c++ pdf-library (osx 10.6). Hope someone can give me a clue how to solve this.
I am using a HPDF_Page_TextRect() to write auto-break supported ...
1
vote
1answer
353 views
Can anyone tell me how to create PDF with text Annotate using libHaru Library
I wanted to create a PDF with a Text Annotate. I came across the 3rd Party library called libharu. Can anybody tell me how to create a PDF with a text annotate using this library or any documentation ...
1
vote
3answers
2k views
Read Pdf with C
I want to be able to read the content of pdf files. I need to do that with C on Linux.
The closer i can get to this was here but I think Haru can only create pdf and is not able to read them (not ...
0
votes
0answers
13 views
Height of text bounded in rect
HPDF_Page_TextRect draws text inside given rect. To output next text block, i need to know height of text just painted. Cant figure out how to do it with libharu.
0
votes
1answer
42 views
Why so big difference in sizes of almost identical documents
Have two pdfs, first created with libharu and second created with PDF::API2. If not mention to coordinates then content is the same. But first pdf oversize second by four times. Only one distinction ...
0
votes
1answer
33 views
How to use specific fonts, Verdana for example with libharu in Ubuntu
I have some type1 types in /usr/share/fonts/type1/gsfonts/, and even more after installing msttcorefonts. But in that diversity of fonts, i dont know which one is verdana or arial or else. And no ...
0
votes
0answers
72 views
creating pdfs with libharu and vala
i was wondering if anyone could give me pointers on how to go about creating pdf files dynamically(without having to save the file as a pdf) from the vala language. i heard it can be done with libharu ...
0
votes
1answer
107 views
How can I show a string in 2/3 lines with libharu on iOS?
I have a string which is longer than the width of the place where it has to show up. What I want to do is show the string on 2 or 3 lines.
My code is as follows:
for (int i=0; i<claimsCount; i++) ...
0
votes
2answers
242 views
what to use libharu c++ or i text java
i need to create pdf creation server and i don't know what is the best tools to chose
java itext engine or c++ libharu , programming is not the problem c++ and java is the same to me .
but i need ...
0
votes
1answer
254 views
How to draw Thai text to PDF file by using libharu library
i am using free pdf library libharu to generate PDF file,
but i have a encoding problem, i can not draw Thai lanugage text on PDF file,
all the text shows "???.."
Somebody know how to fix it?
Thanks
0
votes
1answer
320 views
how to use haru?
can anyone help me on how to use libharu. i already downloaded libharu and am trying to run their sample demo in dev-c++ environment but the errors a raises. this is the error message: ...
0
votes
2answers
1k views
Combining two PDF files in C++
In C++ I'm generating a PDF report with libHaru. I'm looking for someway to append two pages from an existing PDF file to the end of my report. Is there any free way to do that?
Thanks.