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

Optische Ausrichtung

Members
  • Posts

    69
  • Joined

Everything posted by Optische Ausrichtung

  1. I am sure you are a great asset to this forum. Thank you for your contributions!
  2. Is there any reliable evidence for this statement? What makes you think Affintity will provide you with free updates for life?
  3. Es ist so, wie @Andy05 sagt. Ich kann dir anbieten, die Striche in ein Vektor-Format zu konvertieren. Gib einfach Bescheid, falls das für dich hilfreich ist. It's like Andy05 says. I can offer to convert the strokes to a vector format. Just let me know if that is helpful for you.
  4. I know very well how people's minds work and why they write a bunch of nonsense on Internet forums. I wanted to draw attention to this point and I am happy to repeat myself: years of free updates are a very high appreciation of existing customers. All customers will now enjoy a good deal on version 2, and the understandable reasons have been explained by Affinity elsewhere. Side note: Turmoil* may be the business of the many participants who have only been logged into this forum for a few hours. However, I can see no evidence of years of Affinity product use or other signs of loyalty among these participants. This does not make the arguments worse, but it is noticeable. * I am not a native speaker and hope this is the right word.
  5. Contributions from hell. Loyal customers have already been rewarded! If you bought version 1 a few years ago, then you got a very good product and many free updates. If you bought version 1 last week, then you got a very good product and a very good follow-up offer. (But you are not a loyal customer.) Why the hell should new customers pay more just to make old customers feel better?
  6. That is how it is. There is no reason to demand less for yourself or more for others.
  7. A subscription model is nothing more than the compulsion to accept an offer. Eat or die. Every now and then, a paid update in between is no problem if you can decide for yourself whether to accept the offer. (In this point, however, Affinity has let us starve a little too long ... and perhaps itself too).
  8. Was passiert, wenn du "Transparenz schützen" deaktivierst? (What happens if you disable "Transparenz schützen"?)
  9. Sorry. I may have been a little unclear because I am not a native speaker. I meant that there is "the least need for action" on the part of Serif, not "no need for action".
  10. Not me. By the way, I think Affinity Photo is the Application that needs the least action from Serif.
  11. Here's a suggestion: we'll keep nagging here until Serif introduces a subscription model out of sheer desperation.
  12. Right, those were two different things. Means then probably to write a mail to Serif. (?)
  13. I'm almost sure you can just log in to your account and change the email address.
  14. Here is a new modified version of the script. In most cases, you will not need to specify the color profiles. But you will need control over the resolution of the output files. This version is probably a little easier and safer to use: #!/bin/bash username=$USER Help() { # Display Help echo "$0 -- Calls Ghostscript for color separation" echo echo "Syntax: $0 [-d|i|o|h]" echo "options:" echo "d dpi, output resolution (600)" echo "i The input file name (sample.pdf)." echo "o The output file name (sample.tif)." echo "h Print this Help." echo echo "Example: $0 -d 600 -i sample.pdf -o sample.tif" echo } while getopts :d:i:o:h flag do case "${flag}" in d) dpi=${OPTARG};; i) inputfile=${OPTARG};; o) outputfile=${OPTARG};; h) Help exit;; esac done if ! command -v gs &> /dev/null then echo "Ghostscript could not be found" exit else gs \ -sDEVICE=tiffsep \ -dNOPAUSE \ -dBATCH \ -dSAFER \ -r$dpix$dpi \ -sColorConversionStrategy=CMYK \ -dOverrideICC=true \ -dRenderIntent=3 \ -sOutputFile="%08d"$outputfile \ $inputfile fi The PDF/X-4 "sample.pdf" exported from an afpub-document (cmyk) with 2 pages, 2 Pantone colors and overprinting elements results in these 12 TIF files: (The file names of page 3 would accordingly start with 00000003.) Thanks again, especially to @v_kyr ! The script works very reliably and is for the task a good alternative to expensive products.
  15. Thank you, I added my Username in line 3: username=optischeausrichtung and changed -sOutputFile=$outputfile \ to -sOutputFile="%08d"$outputfile \ tested with test.sh -p ISOcoated_v2_300_eci -i input -o out.tif Has worked! (Input filename was "input.pdf", the script writes 5 TIF files per PDF page: Cyan, Magenta, Yellow, Black, Combined)
  16. Yes, but unfortunately, I did not manage to display the overprint elements correctly this way. The fearless among us can still check their print separations "in a post-Adobe world" with ghostscript in a terminal windows. On a Mac it should be something like this: gs \ -sDEVICE=tiffsep \ -dNOPAUSE \ -dBATCH \ -dSAFER \ -r300x300 \ -sColorConversionStrategy=CMYK \ -dOverrideICC=true \ -dRenderIntent=3 \ -sDefaultCMYKProfile="/Users/[username]/Library/Application Support/Affinity Publisher/profiles/[profile].icc" \ -sOutputICCProfile="/Users/[username]/Library/Application Support/Affinity Publisher/profiles/[profile].icc" \ -sOutputFile="output"%08d.tif \ [input].pdf Of course, the parameters have to be adjusted individually, especially the paths to the ICC profiles and the filenames in square brackets. If it works, the code is fine in a shell script. Maybe someone with more knowledge can also make the code a bit more elegant. I don't know if this method has been mentioned in the thread yet.
  17. True, but please bear in mind that upgrades are sometimes necessary because people around you are updating and you are sharing files with them. Some people, unfortunately, are only happy when they have the very latest - regardless of whether they need it or not. We've all had that experience with software from California, Washington and elsewhere. On the other hand, I will probably update to version 2.0 immediately. I have clients who will. Furthermore I like what Affinity does and the products are not really expensive, especially in comparison. Side note, independent of the quote: If version 2.0 costs money at some point, no one should complain about it after years of free updates.
  18. Place the .icc file in C:/Windows/System32/Spool/Drivers/Color (Windows) or in ~/Library/Application Support/Affinity Publisher/profiles (Mac, replace the "~" with your home folder). I would then restart the Application.
  19. My mistake. The function "Baseline" (Set path text baseline offset) from the Context Toolbar was decisive. I had lost track of my experiments.
×
×
  • 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.