Chart in PDF-file ?

Paulsche

Well-Known Member
Licensed User
Longtime User
first question:
I just create with pdfwriter library multiple report output as a PDF file,
It is also possible the chart graphics output to a PDF file?

second question:
can be values ​​from a table in the PDF file format right justified?
 
Last edited:

Paulsche

Well-Known Member
Licensed User
Longtime User
Chart as Bitmap then in PDF-File ?

Is there a way to save the chart as a bitmap graphic,
Bitmap I can save to a PDF file.
Maybe in the code above is a screenshot of the area of the chart would be possible?
 
Upvote 0

hdtvirl

Active Member
Licensed User
Longtime User
You can save a canvas to a bit map using the following code , I have no idea how the PDF library works so I cannot say if you can write a bitmap directly to it. I only use png format.

Dim Out As OutputStream
Out = File.OpenOutput(File.DirDefaultExternal, "FileName.png",False)
CanvasName.Bitmap.WriteToStream(Out,100,"PNG")
Out.Close

CanvasName = your canvas name
FileName.png = what ever file name you want to give it.
Out = stream to write out
100 = 100% quality
PNG = format you want to save in.


Hope this helps

Regards

BOB
 
Upvote 0

klaus

Expert
Licensed User
Longtime User
Yes you can.
Attached an example program it's a combination of the LineCharts1 program of the User's Guide and a small test program from Matthias (for special characters like öäéü) in the german forum.

Best regards.
 

Attachments

  • PDFBirmap.zip
    9.5 KB · Views: 418
  • PDFBitmap.png
    PDFBitmap.png
    47.5 KB · Views: 479
Upvote 0

Paulsche

Well-Known Member
Licensed User
Longtime User
Thanks Klaus, works fine !


Danke Klaus, funktioniert bestens ! :sign0098:
 
Upvote 0

JOTHA

Well-Known Member
Licensed User
Longtime User
... and a small test program from Matthias (for special characters like öäéü) in the german forum.
Hallo Klaus, hat Matthias das Problem mit den Umlauten irgendwie gelöst?
Das zweite Problem beim PDFWriter ist, das man keine Zeilenumbrüche (Wrap) machen kann ...
 
Upvote 0

JOTHA

Well-Known Member
Licensed User
Longtime User
Für das zweite Problem habe Ich keine Ahnung.
Wird das nicht automatisch durch Seitenbreite gemacht ?
... leider nicht. Wenn das mit dem Zeilenumbruch gelöst wäre, dann wäre es perfekt!
 
Upvote 0
Top