You are not logged in.
Pages: 1
Hallo MtwStark,
sorry for the long delay. I have looked at your work and I like it very much. It seems you have fixed the clipping problems with SynPdf.
will do some more tests. I have done also some work for ModifyWorldTransform and co for my use case, try to put in in your work.
Yes for me there is the same problem....
But my subscription is ending on 03/24/2017 so i think i will not investigate further. They will not fix bugs without subscription and i don't like to pay for bugfixing. Wish i can do the same with our clients........
There is a problem with embedded Fonts.
If i have the WingDings Font it will not work as embedded Font. These is not specific to PDF/A. It is always. But my knowledge with Fonts and PDF is not deep so.....
These should be used for Checking PDF/A i think
https://www.pdfa.org
and https://www.pdfa.org/new/verapdf-1-0-sh … ng-begins/
because they got the Money from the EU. They will be the "official" standard for validating PDF/A
PS i have done a quick test with the latest changes from today and it looks good. I have found 1 Output that fails. There is the Font "WingDings" involved. I will investigate further.
After investigate the clipping in SynPDF i must say there are a lot of problems with it. I will spend some more time to find a proper solution.
But at moment im running out of spare time so it will take some weeks.
Hello,
if you can share the not working metafiles i will take a look on these problem
Ok,
i have removed the synPdfArc unit.
hope these way it will work for you
i have made a Pullrequest on GitHub for these missing functions.
I hope it is useful
Hello i have fixed the mappings for MM_LOMETRIC, MM_HIMETRIC in TPdfEnum.ScaleMatrix
With these changes it is well working in both modes
MM_LOMETRIC: begin
// Using FFactor because the FScreenLogPixels from TPdfDocument is not in Scope here
FViewSize.cx := round(7200 / FFactor);
FViewSize.cy := - round(7200 / FFactor);
FWinSize.cx := 25400 ;
FWinSize.cy := 25400 ;
end;
MM_HIMETRIC: begin
FViewSize.cx := round(7200 / FFactor);
FViewSize.cy := - round(7200/ FFactor);
FWinSize.cx := 254000 ;
FWinSize.cy := 254000 ;
end;
Fritz
Ok,
after looking at the source, i see there will not be an "easy" way to resolve.
i will find a different way to solve these special problem.
We have some EMF coming from a CAD. These EMF should be included in pdf files.
The problem is the CAD is drawing the text with SetWorldtransform etc.. for rotated texts.
these situation is not handled in synPDF.
I have a simple emf file for show the situation. has anybody a idea for solving these problem?
And how to attach Files here?
Thanks
Fritz
For me it is time to rethink the investment in delphi. With all the hassels and the "milkink" of the customers i dont believe animore in EMB as a partner. They want opensource projects for better selling the product,
not to make the product better.
By the way: next time you are in Strassbourg we should take a beer!
I think you are right. All these new changes should be work out of the box.
At moment, if there are new futures it needs two ore more versions of Delphi to work.
For me there is a rule on new futures in Delphi: Use it only if it is stable and proofed.
Pages: 1