-
Why write in documentation what is supported HPDF_CS_DEVICE_CMYK in the function HPDF_LoadRawImageFromMem. If not support ... >: 0 (
Copy from crs
HPDF_Image
HPDF_Image_LoadRawImageFromMem (HPDF_MMgr mmgr,
const HPDF_BYTE *buf,
HPDF_Xref xref,
2009-10-22 08:12:03 UTC by alexalex3
-
What formatting O_o.
2009-10-21 22:36:43 UTC by alexalex3
-
Hi all!
I apologize for my English, I use auto translator.
I would like to solve the following new problem.
Here it works
procedure TPDF.applyimage(filename: string; x, y, w, h: HPDF_REAL);
type
TRGB = packed record
r, g, b: byte;
end;
var
image: HPDF_Image;
buff: array of TCMYK;
x1: integer;
ff: HPDF_PBYTE;
begin
setlength(buff, 100 * 100);
for x1 :=...
2009-10-21 22:35:07 UTC by alexalex3
-
Hello...
I want to change page dpi... so I found function...
HPDF_Page_Concat (page, 72.0f / 300.0f, 0, 0, 72.0f / 300.0f, 0, 0);
but this does not operate well..
only changed page matrix...
When I opened PDF file maked in PhotoShop, DPI did not change..
Help me, please... : )
2009-08-12 07:41:18 UTC by tatsuya79
-
Dear All,
I included HARU PDF library in my MFC project which is unicode but I got errors. Can anyone please tell me that the HARU PDF library supports Unicode project.
Many thanks in advance.
Gajendran.
2009-08-11 15:44:17 UTC by sgajendran1
-
Thanks!!
I already found it. It was the PDF Report Listener, when it LoadFonts(), it truncated the font name ("Lucida Cons").
This Library is great!. High performance.
regards,
2009-06-19 12:03:43 UTC by pipi772
-
Sometimes it happens when error occures during pdf generation and HPDF_ResetError(pdfDoc); was not called.
Also check usage of these functions:
- HPDF_New
- HPDF_SaveToFile
- HPDF_Free
All these are necesery for stable generation.
2009-06-19 04:56:10 UTC by marius_garsvas
-
Hi, im a Visual FoxPro developer and im using PDFlistener made over a wrapper of Haru Lib made by Dorin Vasilescu.
With a few reports, this error appears:
4133 "An invalid document handle is set"
I debbuged it, and the handle is already set.
Can you help me,??
all advices are welcome
Thanks
sry about my english. :))
2009-06-18 16:00:01 UTC by pipi772
-
Hi,
Did anyone looked into this?
I still couldn't find anything on how to read annotations from a PDF file using this Library..
I am sure if writing Annotations capabilities are there, there must be something for reading them as well ?
or it is not there.
Thanks
Pankaj.
2009-06-12 10:35:44 UTC by pmishra77
-
I've found the answer by myself:
HPDF_UseCNSEncodings(pdf);
HPDF_UseCNSFonts(pdf);
/* create default-font */
string font_name = HPDF_LoadTTFontFromFile2(pdf,@"C:\WINDOWS\Fonts\SIMSUN.TTC", 1, false);
HPDF_Font font = HPDF_GetFont(pdf,font_name, "GBK-EUC-H");
For detail,see : doc\index.html - documentation - Fonts and Encoding.
2009-06-12 03:03:29 UTC by kener