Search found 32 matches

by Hadrianus
Thu Mar 16, 2017 12:41 pm
Forum: Coding Questions
Topic: Skinning Gadget
Replies: 4
Views: 2081

Re: Skinning Gadget

Take a look at the commercial PureVision from Reelmedia.
by Hadrianus
Mon Feb 20, 2017 12:39 pm
Forum: Announcement
Topic: PurePDF Version 2.0
Replies: 473
Views: 278928

Re: PurePDF Version 2.0

I guess there is no more maintenance from the creator of this nice library. Pity.
by Hadrianus
Thu Feb 02, 2017 12:37 pm
Forum: Coding Questions
Topic: What is the purpose of the canvas gadget?
Replies: 8
Views: 2982

Re: What is the purpose of the canvas gadget?

Not to worry about re-draw after resizing etc, unlike the use of Windowoutput(). So, your drawing remains intact in the canvas. I am not familiair with windows api for keeping drawings intact.
by Hadrianus
Fri Jun 10, 2016 7:44 pm
Forum: Coding Questions
Topic: How to get Pdfium to work (done)
Replies: 47
Views: 22998

Re: How to get Pdfium to work

This works nice. You can put the image inside canvasgadget or imagegadget. No need for windows-api, only PB and Pdfium.


Enumeration
#PdfLibrary
#PdfImage
EndEnumeration

Prototype protoInitPdfLibrary()
Prototype protoLoadDocument(documentpath.p-utf8,password.p-utf8)
Prototype protoLoadPage ...
by Hadrianus
Thu Jun 09, 2016 10:19 pm
Forum: Coding Questions
Topic: How to get Pdfium to work (done)
Replies: 47
Views: 22998

Re: How to get Pdfium to work

I get them from: https://pdfium.patagames.com/help/html/d88c90b3-bbfa-5d07-ea93-e8809d3d257a.htm

Be aware that their commercial dll seems to be bigger than the free one from https://github.com/pvginkel/PdfiumViewer

This free dll, made from open source google/foxit with Apache2 license, has less ...
by Hadrianus
Sun Jun 05, 2016 10:26 pm
Forum: Coding Questions
Topic: Vector Drawing - Why image does not move?
Replies: 2
Views: 877

Re: Vector Drawing - Why image does not move?

The image seems to be the problem. If you draw a simple line or a box, then you will see it's working just fine (don't forget to make the canvas empty before each new frame).
by Hadrianus
Sat Jun 04, 2016 11:51 pm
Forum: General Discussion
Topic: Little 3D engine
Replies: 4
Views: 3365

Re: Little 3D engine

Great Starbootics ! I am looking forward for your result.
by Hadrianus
Sat Jun 04, 2016 11:43 pm
Forum: Coding Questions
Topic: How to get Pdfium to work (done)
Replies: 47
Views: 22998

Re: How to get Pdfium to work

I confirm it's working just fine. This library is no problem for PB !
by Hadrianus
Sun May 29, 2016 6:41 pm
Forum: Coding Questions
Topic: Confused - Need some help
Replies: 9
Views: 1708

Re: Confused - Need some help

You are asking a lot. PureVision is still nice to use. The formbuilder inside PB also. I suggest you just start with Listicon. It's a nice gadget for collecting and arranging data. Many great examples have been posted on this forum. With this you can set up something similar as Thunderbird.
by Hadrianus
Sun May 22, 2016 7:40 pm
Forum: Coding Questions
Topic: How to get Pdfium to work (done)
Replies: 47
Views: 22998

Re: How to get Pdfium to work

Thanks a lot Acreis.

I guess my biggest mistake is not putting p-utf8 in documentpath (althrough I do not understand why it's necessary) and I did not use InitLibrary() as it should. Are you familiar with Pdfium and all the function-arguments?

I can continue my research now.
by Hadrianus
Sun May 22, 2016 4:42 pm
Forum: Coding Questions
Topic: How to get Pdfium to work (done)
Replies: 47
Views: 22998

How to get Pdfium to work (done)

See also this topic in general discussion (http://www.purebasic.fr/english/viewtopic.php?f=7&t=65733).

Due to lack of help-files I use information from https://pdfium.patagames.com/help/html/d88c90b3-bbfa-5d07-ea93-e8809d3d257a.htm. Patagames use this library too, for their .net application. Only ...
by Hadrianus
Sun May 22, 2016 1:12 pm
Forum: General Discussion
Topic: Pdfium library
Replies: 3
Views: 16112

Re: Pdfium library

Never heard of Pdfium before so I looked it up.

Here are 2 github repos that might be of help:
https://github.com/hfiguiere/pdfium
https://github.com/pvginkel/PdfiumViewer

In github repo PdfiumViewer under PdfiumViewer/Libraries/Pdfium/ there are Windows DLLs ready to be used.
PdfiumViewer ...
by Hadrianus
Sat May 21, 2016 11:08 pm
Forum: Feature Requests and Wishlists
Topic: Modern UI system (CEF)
Replies: 3
Views: 2713

Re: Modern UI system (CEF)

That's right Alexi. An independent system with full control, every pixel.
by Hadrianus
Tue May 17, 2016 11:13 pm
Forum: General Discussion
Topic: About self drawing
Replies: 3
Views: 2132

Re: About self drawing

As far as I know a background image inside a treegadget is not possible. Then you have to use windows api for get it done, but I have no experience with this.
by Hadrianus
Tue May 17, 2016 11:03 pm
Forum: General Discussion
Topic: Pdfium library
Replies: 3
Views: 16112

Pdfium library

Google's opensource Pdfium seems to be a promising library for bringing a real PDF viewer inside an PB application on all OS. It has Foxit software inside. But inspite of being opensource, I can not find understandable documentation and code, except for pages about wxWidgets and their use of Pdfium ...