You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any highlighted Elements in docx won't be exported on PDF convert.
Seems like the highlighted text already disappears after template filling just before converting
Expected Behavior
Highlighted text from templates should be exported to pdf
Attached are a rightly filled pdf and the unidoc pdf.
This bug hits all kinds of things possible in word: Text, Tables, forms like checkboxes, Radio Buttons etc.
Welcome! Thanks for posting your first issue. The way things work here is that while customer issues are prioritized, other issues go into our backlog where they are assessed and fitted into the roadmap when suitable. If you need to get this done, consider buying a license which also enables you to use it in your commercial products. More information can be found on https://unidoc.io/
The feature you mentioned has been implemented and is expected to be available in our next release, which is anticipated to be released by the end of this month.
In the meantime, it would be greatly appreciated if you could provide us with a DOCX file for testing the feature.
Description
Any highlighted Elements in docx won't be exported on PDF convert.
Seems like the highlighted text already disappears after template filling just before converting
Expected Behavior
Highlighted text from templates should be exported to pdf
Actual Behavior
Steps to reproduce the behavior:
Attachments
`package main
import (
"fmt"
"log"
"os"
)
type config struct {
UniofficeLicenseKey string
conf:"flag:license,env:LICENSE_KEY"
UniofficeCustomerName string
conf:"flag:name,env:CUSTOMER_NAME"
UniofficeApiKey string
conf:"flag:key,env:API_KEY"
}
func main() {
var conf config
txt, err := cfg.Parse("", &conf)
if err == cfg.ErrHelpWanted {
fmt.Println(txt)
os.Exit(0)
}
if err != nil {
fmt.Println(err)
fmt.Println(txt)
os.Exit(1)
}
}`
unidoc_export.pdf
3rdparty_export.pdf
Attached are a rightly filled pdf and the unidoc pdf.
This bug hits all kinds of things possible in word: Text, Tables, forms like checkboxes, Radio Buttons etc.
Verison:
github.com/unidoc/unioffice v1.39.0
github.com/unidoc/unipdf/v3 v3.65.0
The text was updated successfully, but these errors were encountered: