Pedro wrote > > Robert Funnell wrote >> What about unzipping the .odt/.odp/whatever file and searching for >> font names in the resulting .xml files? (Again, I haven't tried this.) > That would make sense. Unfortunately the file styles.xml lists some 55 > fonts > From a PDF copy of the presentation I can see that there should be 15 > different fonts, so the xml is not helping... > > Unless I'm looking in the wrong xml... Does anyone know any better?
Pedro, something like this should give an idea: $ unzip -p filename.odp styles.xml | xmllint --format - | grep "font-face style:name" | sort -u That will just give style-based font use. For direct formatting, replace "styles.xml" with content.xml. Best wishes, Owen. -- View this message in context: http://nabble.documentfoundation.org/How-to-find-out-which-fonts-are-used-in-an-Open-Document-tp4174339p4174431.html Sent from the Users mailing list archive at Nabble.com. -- To unsubscribe e-mail to: [email protected] Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
