Search found 2435 matches

by Vasyl - PDF-XChange
Fri Oct 21, 2022 4:34 pm
Forum: PDF-XChange Editor SDK
Topic: Loading Byte() Directly into PDF Control SOLVED
Replies: 1
Views: 1062

Re: Loading Byte() Directly into PDF Control SOLVED

Hi Lambchop.

There is only one way currently: you can create your own implementation of IStreamWrapper-object that accesses to an existing memory-block and reads it directly through the implemented IStream-methods.

Cheers.
by Vasyl - PDF-XChange
Wed Oct 19, 2022 12:52 am
Forum: PDF-XChange Editor
Topic: Is it possible to go to the next page by a single tap on a full-screen non-continuous page view? SOLVED
Replies: 9
Views: 1370

Re: Is it possible to go to the next page by a single tap on a full-screen non-continuous page view? SOLVED

Hi rakunavi.

In the next upcoming build the single tap in fullscreen(with presentation mode enabled) - will switch to the next page, as should.

Cheers.
by Vasyl - PDF-XChange
Wed Oct 12, 2022 4:57 pm
Forum: PDF-XChange Editor SDK
Topic: Export bookmarks to file does not work
Replies: 5
Views: 2227

Re: Export bookmarks to file does not work

We checked this feature and couldn't reproduce any issue there. Maybe problem is document-related? Can you try to reproduce it with another doc?
by Vasyl - PDF-XChange
Wed Oct 12, 2022 3:13 am
Forum: PDF-XChange Editor SDK
Topic: Unable to convert image files (png,jpg) to tiff
Replies: 10
Views: 1946

Re: Unable to convert image files (png,jpg) to tiff

Sorry for the delay with that... Unfortunately, at the moment we cannot say exactly what is the reason of this issue. We were able to reproduce it once, on one machine only, but after some experiments(platform changed, clean/rebuild, reopen solution, etc) this problem magically disappeared! We will ...
by Vasyl - PDF-XChange
Wed Oct 12, 2022 2:54 am
Forum: PDF-XChange Editor SDK
Topic: AxPDFedit error
Replies: 11
Views: 1536

Re: AxPDFedit error

Hi, The issue with FormDesigner is known and rare, but at the moment we cannot say exactly what causes this, unfortunately. As a kind of treatment for this: in VisualStudio you may change the Platform, for example from x64 to x86 and vice versa, and then reopen the solution. Often this problem is ju...
by Vasyl - PDF-XChange
Wed Oct 12, 2022 12:08 am
Forum: PDF-XChange Editor SDK
Topic: Export bookmarks to file does not work
Replies: 5
Views: 2227

Re: Export bookmarks to file does not work

Hi prasantha.

Sorry for the delay with it... Will check it and let you know about the result.

Cheers.
by Vasyl - PDF-XChange
Thu Oct 06, 2022 5:47 pm
Forum: PDF-XChange Editor
Topic: Setting JPEG 2000 to workaround 359 image corruption bug
Replies: 80
Views: 9718

Re: Setting JPEG 2000 to workaround 359 image corruption bug

Hi David.

What is the point to increase the DPI of the existing image? In that case it will just increase the size of pdf-file without real improvement of the quality of enlarged image(s).

Cheers.
by Vasyl - PDF-XChange
Wed Oct 05, 2022 11:49 pm
Forum: PDF-XChange Editor SDK
Topic: AxPDFedit error
Replies: 11
Views: 1536

Re: AxPDFedit error

Please try:

1. re-register the Editor's ActiveX:
regsvr32 <EditorSdkFolder>\PDFXEditCore.x86.dll
regsvr32 <EditorSdkFolder>\PDFXEditCore.x64.dll

2. then rebuild your project...
by Vasyl - PDF-XChange
Tue Oct 04, 2022 5:06 pm
Forum: PDF-XChange Core API SDK
Topic: OCR only Image on PDF and Insert OCR'ed text back to original co-ordinates on original PDF
Replies: 3
Views: 5651

Re: OCR only Image on PDF and Insert OCR'ed text back to original co-ordinates on original PDF

The EditorSDK includes the whole CoreAPI SDK as well (as PXC/PXS-sublayer). So in your app you do not need to make two independent references to such two SDKs. It's enough to make just one reference to the EditorSDK only. According to pdfCtl-object - please look to our FullDemo SDK-example(s) -there...
by Vasyl - PDF-XChange
Mon Oct 03, 2022 10:08 pm
Forum: PDF-XChange Core API SDK
Topic: OCR only Image on PDF and Insert OCR'ed text back to original co-ordinates on original PDF
Replies: 3
Views: 5651

Re: OCR only Image on PDF and Insert OCR'ed text back to original co-ordinates on original PDF

Hi Rajas. Sorry for the delay with the answer. Here is code that uses EditorSDK , its OCRPlugin.pvp and related "op.document.OCRPages2" operation to do what you want: double CalcDist(PXC_Point p1, PXC_Point p2) { double dx = p2.x - p1.x; double dy = p2.y - p1.y; return Math.Sqrt(dx * dx + ...
by Vasyl - PDF-XChange
Fri Sep 30, 2022 2:48 am
Forum: PDF-XChange Core API SDK
Topic: document images
Replies: 1
Views: 4061

Re: document images

Hi, khho. Your method is correct and reliable enough. But incomplete. You also need to look inside XForms: ... if (PXC_CIType.CIT_XForm == itemType) { IPXC_XForm xform = doc. GetXFormByHandle(item.XForm_Handle); if (xform != null) { IPXC_Content xform_con = GetContent(PXC_ContentAccessMode.CAccessMo...
by Vasyl - PDF-XChange
Tue Sep 27, 2022 11:23 pm
Forum: PDF-XChange Editor SDK
Topic: Unable to convert image files (png,jpg) to tiff
Replies: 10
Views: 1946

Re: Unable to convert image files (png,jpg) to tiff

Hi, chavas.

We tried to reproduce it with our C# FullDemo example, in Free-Registration mode, but couldn't.
What error are you getting there?
by Vasyl - PDF-XChange
Tue Sep 27, 2022 10:04 pm
Forum: PDF-XChange Editor SDK
Topic: SpellChecker pre-enabled loaded dictionaries / IPXV_Inst::Init (user settings) / SaveUserSettings SOLVED
Replies: 5
Views: 1648

Re: SpellChecker pre-enabled loaded dictionaries / IPXV_Inst::Init (user settings) / SaveUserSettings SOLVED

I get "Unspecified error" for "cab.Load(userSettingsSrcStream, [true|false]);" Sorry, it was my mistake there, the file you get from PXV_Inst.SaveUserSetting - is encrypted for user safety purposes. So you cannot open it just via cab.Load(). But you may use another and simpler w...
by Vasyl - PDF-XChange
Mon Sep 26, 2022 8:33 pm
Forum: PDF-XChange Editor SDK
Topic: SpellChecker pre-enabled loaded dictionaries / IPXV_Inst::Init (user settings) / SaveUserSettings SOLVED
Replies: 5
Views: 1648

Re: SpellChecker pre-enabled loaded dictionaries / IPXV_Inst::Init (user settings) / SaveUserSettings SOLVED

Hi Zarko. can you make it so that when Init reads user settings and if none of the dictionaries is enabled - and there are now some oxt's loaded - pre-enable one (as if the settings file did not exist). Sounds too artificial behavior for regular EU app where end-user must have a clear decision about...
by Vasyl - PDF-XChange
Thu Sep 15, 2022 4:29 pm
Forum: PDF-XChange Editor SDK
Topic: Using ISpellCheckCallbacks do to spell check *from code* SOLVED
Replies: 7
Views: 1965

Re: Using ISpellCheckCallbacks do to spell check *from code* SOLVED

I'm afraid this is not possible at the moment...
by Vasyl - PDF-XChange
Thu Sep 15, 2022 1:15 am
Forum: PDF-XChange Editor SDK
Topic: Using ISpellCheckCallbacks do to spell check *from code* SOLVED
Replies: 7
Views: 1965

Re: Using ISpellCheckCallbacks do to spell check *from code* SOLVED

Hi Zarko.

You may use this way:

IPXV_SpellChecker spell = (IPXV_SpellChecker)pxvInst.GetExtension("SpellChecker");

Cheers.
by Vasyl - PDF-XChange
Wed Sep 07, 2022 2:13 am
Forum: PDF-XChange Editor SDK
Topic: Editor jumps to last page bug
Replies: 3
Views: 666

Re: Editor jumps to last page bug

Hi Biber. Unfortunately but we cannot reproduce this strange jumping to the last page you described. Can you make a simple video that shows it? Also might be helpful for us if you will provide your current Editor-settings (via File/ManageSettings/ExportSettings, there you may choose the 'Program Opt...
by Vasyl - PDF-XChange
Wed Sep 07, 2022 1:59 am
Forum: PDF-XChange Editor SDK
Topic: op.openDoc for .MD (Markdown) - force to use "conv.imp.markdown" SOLVED
Replies: 3
Views: 1348

Re: op.openDoc for .MD (Markdown) - force to use "conv.imp.markdown" SOLVED

- To see the Progress-dialog you need to use the Convert method inside other thread, not in main. - The problem with importing of MD files via op.openDoc - it cannot be solved from your side, unfortunately. But we will fix it in the next build definitely . The Options.UsedConvID - is the output para...
by Vasyl - PDF-XChange
Tue Aug 30, 2022 3:14 am
Forum: PDF-XChange Editor SDK
Topic: how to Save a pdf copy with a password
Replies: 1
Views: 906

Re: how to Save a pdf copy with a password

Hi Prasantha. You need to setup password-security for the doc, before saving it: secMethod = IPXS_Inst.StrToAtom("Standard"); IPXC_SecurityHandler secHandler = IPXC_Inst.GetSecurityHandler(secMethod); // >> once do the following code IStream streamWithSerializedSecPolicy; // create IStream...
by Vasyl - PDF-XChange
Tue Aug 30, 2022 2:42 am
Forum: PDF-XChange Editor
Topic: Color setting of the link borders in link edit mode SOLVED
Replies: 4
Views: 883

Re: Color setting of the link borders in link edit mode SOLVED

Hi rakunavi.

All reported issues will be fixed in the next build. Thanks for the help.

Cheers.
by Vasyl - PDF-XChange
Fri Aug 26, 2022 9:24 pm
Forum: PDF-XChange Editor
Topic: Bug Report: Rename File Does Not Work If Only Changing Case SOLVED
Replies: 11
Views: 3048

Re: Bug Report: Rename File Does Not Work If Only Changing Case SOLVED

Hi All.

The RT #6205: (Bug: Rename does not allow changing capitalization) - will be fixed in the next build.

Cheers.
by Vasyl - PDF-XChange
Fri Aug 26, 2022 12:20 am
Forum: PDF-XChange Editor
Topic: Bug Report: Rename File Does Not Work If Only Changing Case SOLVED
Replies: 11
Views: 3048

Re: Bug Report: Rename File Does Not Work If Only Changing Case SOLVED

Hi David. Currently Unicode characters are not accepted, or not correctly inserted into the file name, when renaming an open file. Can you provide a simple example to reproduce this issue? Because I tried it and all works well for me... And please note - the following symbols: < (less than) > (great...
by Vasyl - PDF-XChange
Wed Aug 24, 2022 8:03 pm
Forum: PDF-XChange Editor SDK
Topic: How to delete annotation without confirmation message
Replies: 9
Views: 1612

Re: How to delete annotation without confirmation message

Weird, we can't reproduce it at all. And also I checked the code history, up to 2019 - there is no (and never was) code that would show this message inside from op.Do()... Please check your EditorEvent-handler - maybe you handle the e.operBeforeExecute event for op.annots.delete operation and show t...
by Vasyl - PDF-XChange
Mon Aug 22, 2022 9:04 pm
Forum: PDF-XChange Editor SDK
Topic: e.pagesView.ready / CmdPaneBottom / CmdLine(s) missing for "compare results" document SOLVED
Replies: 7
Views: 1647

Re: e.pagesView.ready / CmdPaneBottom / CmdLine(s) missing for "compare results" document SOLVED

I've already tested the ViewType (PXV_DocumentViewType) expecting to have PXV_DocumentViewType_CmpReport for "compare results" document - but the result is always PXV_DocumentViewType_Normal. So, maybe a bug? Unfortunately there is a bug :( We will fix it in the near future. Anyhow, how t...
by Vasyl - PDF-XChange
Fri Aug 19, 2022 11:55 pm
Forum: PDF-XChange Editor SDK
Topic: e.pagesView.ready / CmdPaneBottom / CmdLine(s) missing for "compare results" document SOLVED
Replies: 7
Views: 1647

Re: e.pagesView.ready / CmdPaneBottom / CmdLine(s) missing for "compare results" document SOLVED

You may check it via:

bool bIsCmpReport = docView.ViewType == PXV_DocumentViewType_CmpReport;

OR (equivalent):

cmpView = docView.ActiveView[Str2ID("cmpDocsPagesView")];
bool bIsCmpReport = (cmpView != null);
by Vasyl - PDF-XChange
Fri Aug 19, 2022 10:23 pm
Forum: PDF-XChange Editor SDK
Topic: Change Title/Hint for CmdItem based on active document SOLVED
Replies: 4
Views: 1265

Re: Change Title/Hint for CmdItem based on active document SOLVED

If you need to have cmdItems with individual text 'per document' you may use two ways: 1. In case, when such cmd is located just on any documen's toolbar (not on mainframe's Ribbon, or other mainframe's toolbar) - for each document you may use IUIX_CmdManager.CreateNewCmd/CreateNewCmd2 to create new...
by Vasyl - PDF-XChange
Fri Aug 19, 2022 9:47 pm
Forum: PDF-XChange Editor SDK
Topic: e.pagesView.ready / CmdPaneBottom / CmdLine(s) missing for "compare results" document SOLVED
Replies: 7
Views: 1647

Re: e.pagesView.ready / CmdPaneBottom / CmdLine(s) missing for "compare results" document SOLVED

The 'comparison-docs-report' document is visualized in special way and has special panes layout. The its main pane has ID="cmpDocsPagesView". And this pane contains cmdbar.cmpDocsRes on the top and cmdbar.docOptions, cmdbar.pageNav, cmdbar.pageLayout, cmdbar.pageZoom, cmdbar.launchApp on t...
by Vasyl - PDF-XChange
Fri Aug 19, 2022 9:29 pm
Forum: PDF-XChange Editor SDK
Topic: Something is deleting my custom bars upon cmd.open SOLVED
Replies: 4
Views: 1209

Re: Something is deleting my custom bars upon cmd.open SOLVED

It may occur because almost any change in cmdbars/cmdpanes is 'monitored' by Editor, and then automatically 'reproduced' in other instances of the same type (i.e - in other Mainframes). To avoid this automatic synchronization of toolbars - you need to enclose that changes by LockCmdCustomizationEven...
by Vasyl - PDF-XChange
Thu Aug 18, 2022 1:38 am
Forum: PDF-XChange Editor
Topic: Two consecutive words not found if line break present
Replies: 20
Views: 3666

Re: Two consecutive words not found if line break present

Hi Nick. As it is, PDF-XChange now lacks any way to search for a series of words separated by whitespace in the exact order they occur. Again, many search engines either use quoted phrases for this or offer an advanced search option such as "this exact phrase". You already have this possib...
by Vasyl - PDF-XChange
Wed Aug 17, 2022 12:28 am
Forum: PDF-XChange Editor
Topic: Two consecutive words not found if line break present
Replies: 20
Views: 3666

Re: Two consecutive words not found if line break present

Hi ironick. We tried to reproduce the issue you described, but couldn't: 1. Proximity: "Words from the Same Page": image.png - 5 entries (you have 2) 2. Proximity: "Only Adjacent Words": image(1).png - 3 entries (you also have 3) Also we made simple example with line-break: TheHu...
by Vasyl - PDF-XChange
Tue Aug 16, 2022 8:13 pm
Forum: PDF-XChange Editor SDK
Topic: Visibility of "Compare docs" commands bar when opening "compare results" document SOLVED
Replies: 3
Views: 1244

Re: Visibility of "Compare docs" commands bar when opening "compare results" document SOLVED

I'm using IPXV_MainFrame.OpenDocFrom feeding it with a CoreDoc opened using op.openDoc operation.
To handle the compare-pdfs-reports properly you need to specify:

op.openDoc.Params["Options.CanLoadCmpPDFReportData"] = true;

HTH.
by Vasyl - PDF-XChange
Mon Aug 15, 2022 4:48 pm
Forum: PDF-XChange Editor SDK
Topic: To fix the blured Icon
Replies: 3
Views: 828

Re: To fix the blured Icon

I guess this problem is related to:
viewtopic.php?t=39126

So there is the same question - how do you use Editor's icons in that 3rdparty Ribbon UI?
Does this Ribbon-implementation provide the draw-your-own-icon-callback and do you override it?
by Vasyl - PDF-XChange
Mon Aug 15, 2022 4:36 pm
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 2996

Re: DarkMode

Zarko - thanks for your helpful help! :)
by Vasyl - PDF-XChange
Sat Aug 13, 2022 4:15 am
Forum: PDF-XChange Editor SDK
Topic: Request: op.search to process multiple IAFS_Name entries in Input SOLVED
Replies: 7
Views: 2072

Re: Request: op.search to process multiple IAFS_Name entries in Input SOLVED

Good point, thanks. We may add that possibility in the future.
by Vasyl - PDF-XChange
Sat Aug 13, 2022 4:12 am
Forum: PDF-XChange Editor SDK
Topic: [v362] Commands in Bars display Short Title SOLVED
Replies: 3
Views: 1207

Re: [v362] Commands in Bars display Short Title SOLVED

Why would ShortTitle for "cmd.view.comments" be longer than Title?
Because it is an issue and will be fixed in the upcoming build...
by Vasyl - PDF-XChange
Sat Aug 13, 2022 4:07 am
Forum: PDF-XChange Editor SDK
Topic: To fix the blured Icon
Replies: 3
Views: 828

Re: To fix the blured Icon

Please try 24x24 size for icons. Editor uses that size.
by Vasyl - PDF-XChange
Sat Aug 13, 2022 4:04 am
Forum: PDF-XChange Editor SDK
Topic: To fixed the space between tool bar icon in different machines
Replies: 3
Views: 718

Re: To fixed the space between tool bar icon in different machines

Seems you using 3rd-party implementation of Ribbon UI (XtremeCommandBars?). And I don't know how you use Editor's icons for that...

Can you clarify this moment?
by Vasyl - PDF-XChange
Sat Aug 13, 2022 3:50 am
Forum: PDF-XChange Editor SDK
Topic: [v362] Trying to remove 'In All Docs from this Window' from IPXV_SearchView - unexpected results SOLVED
Replies: 4
Views: 1566

Re: [v362] Trying to remove 'In All Docs from this Window' from IPXV_SearchView - unexpected results SOLVED

In future builds we will solve that issues with this combo, especially in the case when IsolatedMainFrames==true is.
by Vasyl - PDF-XChange
Sat Aug 13, 2022 3:44 am
Forum: PDF-XChange Editor SDK
Topic: [v362] General.IsolatedMainFrames vs SearchView.'In All Docs from this Window' SOLVED
Replies: 3
Views: 1404

Re: [v362] General.IsolatedMainFrames vs SearchView.'In All Docs from this Window' SOLVED

Hi Zarko.

We will fix that incompatibility in the future, probably by removing the 'In All Docs from this Window' when General.IsolatedMainFrames==true

Cheers.
by Vasyl - PDF-XChange
Sat Aug 13, 2022 3:40 am
Forum: PDF-XChange Editor SDK
Topic: DarkMode
Replies: 16
Views: 2996

Re: DarkMode

Hi Jeff. In C#, to change theme: { PDFXEdit.ICabNode pr = pdfCtl.Inst.Settings["CustomUI"]; pr["Theme"].v = "Black"; // "DarkGray", "White", "Black" // "" - it inherits system's UI style } pdfCtl.Inst.FireAppPrefsChanged(PDFXEdit....
by Vasyl - PDF-XChange
Sat Aug 13, 2022 2:58 am
Forum: PDF-XChange Editor SDK
Topic: How to delete annotation without confirmation message
Replies: 9
Views: 1612

Re: How to delete annotation without confirmation message

We also cannot reproduce it. Seems you are using too old version of SDK that has this warning. Please try the latest version(363 build)...
by Vasyl - PDF-XChange
Sat Aug 13, 2022 2:52 am
Forum: PDF-XChange Editor SDK
Topic: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED
Replies: 5
Views: 5176

Re: v362: IPXC_DocSrcInfo.IsVirtualPDF SOLVED

Its flag for the case when PDF is just created in memory from any non-pdf file. For example when it is created from text/docx/xlsx. etc
by Vasyl - PDF-XChange
Wed Aug 10, 2022 7:07 pm
Forum: PDF-XChange Editor
Topic: Copy/paste comments places items incorrectly (v9.4.362.0)
Replies: 3
Views: 514

Re: Copy/paste comments places items incorrectly (v9.4.362.0)

Hi All.

This issue will be fixed very soon. Sorry for the inconvenience...

Cheers
by Vasyl - PDF-XChange
Thu Jul 28, 2022 6:14 pm
Forum: PDF-XChange Editor SDK
Topic: "ico.dlg.key" lost in 9.3.* SOLVED
Replies: 3
Views: 1091

Re: "ico.dlg.key" lost in 9.3.* SOLVED

At the moment you may use ico.unlock instead. In the next build we will add ico.dlg.key-alias for that icon...
by Vasyl - PDF-XChange
Tue Jul 26, 2022 10:34 pm
Forum: PDF-XChange Viewer SDK
Topic: Ability to create bookmarks or notes
Replies: 3
Views: 4368

Re: Ability to create bookmarks or notes

Hi mgrauman.

1. these menu-items require to have the selected text on the page.
2. the document may have security settings that deny commenting, bookmarking, etc. Check this o File/DocProps/Security dialog.

HTH
by Vasyl - PDF-XChange
Tue Jul 19, 2022 11:15 pm
Forum: PDF-XChange Editor SDK
Topic: Overriding Form Editor Draw Event SOLVED
Replies: 7
Views: 1596

Re: Overriding Form Editor Draw Event SOLVED

Another option - you may intercept the "e.formFields.inserted", like: int e_formField = pxvInst.Str2ID("e.formFields.inserted"); OnEvent(eventID, event) { if (eventID == e_formField) { IPXV_FormFieldsList fieldsList = (IPXV_FormFieldsList)e.pFrom; foreach (IPXC_FormField field : ...
by Vasyl - PDF-XChange
Tue Jul 19, 2022 10:53 pm
Forum: PDF-XChange Editor SDK
Topic: JBIG compression .NET SOLVED
Replies: 3
Views: 1620

Re: JBIG compression .NET SOLVED

...I have searched through the FullDemo code and there is no such JBIG code like you posted.
Because the original FullDemo doesn't contain that code. I added and tested it in my local copy of FullDemo-project.
Seems is not bad idea to add such code-snippet into the public version of FullDemo..