Answer the question
In order to leave comments, you need to log in
How to convert pdf with text layer to pdf in which it is impossible to select text (like a picture) in C#?
Good afternoon, comrades. I have a very simple doc, docx to pdf converter
Word.Application word = new Word.Application(); //создаём экземпляр приложения Word
Word.Document file = word.Documents.Open(path); //создаём экземпляр документа и открываем word файл
file.ExportAsFixedFormat(path + ".pdf", Word.WdExportFormat.wdExportFormatPDF); //преобразование файла в PDF формат
word.Quit(); // закрываем Word
Answer the question
In order to leave comments, you need to log in
no. Word does not have a built-in.
you will have to turn it into pictures. Or an Adobe library or some third-party one, like https://www.ghostscript.com/.
but in any case, all this inside comes down to turning into pictures and gluing pdf from pictures.
here's an example, although I'm sure and so stumbled
https://stackoverflow.com/questions/23905169/how-t...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question