Jump to content
You must now use your email address to sign in [click for more info] ×

algo

Members
  • Posts

    11
  • Joined

  • Last visited

  1. Yes, the problem is that Affinity can't read a SVG files when it is encoded in ascii. If you are still using the Freestyle Plugin in Blender, then you could just replace the relevant variables in the source code of the plugin to utf-8. On Mac, the python file is located in Blender.app/Contents/Resources/3.6/scripts/addons/render_freestyle_svg.py # use utf-8 here to keep ElementTree happy, end result is utf-16 # NOTE algo fixed encoding issue where affinity designer rejects ascii svg_primitive = """<?xml version="1.0" encoding="UTF-8" standalone="no"?> ... # also change the encoding of all three tree.write functions to UTF-8 tree.write(filepath, encoding='UTF-8', xml_declaration=True) Or if you also want to simplify lines by removing redundant points, then you could install Inkscape and use its command line interface in shell (bash command): inkscape --actions="select:strokes; path-simplify; export-filename:0001.svg; export-do; " 0001.svg Inkscape will open the svg, simplify the path and then overwrite the svg file with utf-8 encoding.
  2. Affinity Designer 2.1.1 cannot open a svg if the file is encoded in ASCII. When I change the encoding to UTF-8, then it works just fine: <?xml version="1.0" encoding="ascii" standalone="no"?> <svg version="1.1" ... => <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg version="1.1" ... Is there a reason why Affinity doesn't support ASCII (Inkscape does).
  3. I guess that the most reasonable way to implement this, without having to develop a plugin for each of the reference managers, would be to just develop a bibtex parser for Publisher. Bibtex as a format has a long history and is well-defined. Zotero and other's already have the facility to export a library (automatically) to bibtex (.bib). I could help with that. However, I don't know in what kind of language affinity plugins can be written or if there is even a public API you could talk to.
  4. I am exporting to PDF. I can send it to you as an email if you give me your address.
  5. I have a couple of images that are masked. In publisher the mask is invisible, except if you zoom in and out (see attachment). If I print the page on a professional fine art RGB printer (EPSON), then the mask is printed as well. Do you have any clue what the reason for this could be and how I can avoid this? Kapture 2022-09-28 at 22.12.01.mp4
  6. Sure: select text box and group of objects (rectangle and another text box) align left with the align tool undo
  7. When undoing the translation of a text area, the blue bounding box of the text area is moved to its last state, but the rendered text is not. Zooming in or out will refresh the display of the text, so it is shown at the location of the bounding box (paning has no effect). At the moment, I have seen this bug only when I use the align tool. Has anybode else experienced this behaviour? Mac OS 12.5.1, Radeon Pro 555X 4 GB (Metal and hardware acceleration is enabled).
  8. I also think that an API would be great. Some Adobe applications can be automated by using a JSX (Java Script) file. I've used it to automatically convert images exported from various applications whenever they are saved into a certain folder to print and web formats (resolution, dpi, colour space, cropping, etc). The converted files have been saved and renamed according to the format to different locations. Such scripts are quite handy if you create a lot of CGIs and don't want to spend too much time on preparing the images for the media they are shown in.
  9. I was also expecting that the slices are exported with metadata when I check the "include metadata" option in the export persona. A rather annoying circumstance in production workflow, when one has to add metadata already added to AP to each exported slice... In my opinion, metadata management in AP would be much more useful, if all the metadata would be added to every slice AND that one could overwrite some metadata fields like description for each slice.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.