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

v_kyr

Members
  • Posts

    13,234
  • Joined

Everything posted by v_kyr

  1. Was für ein ICC Profil, für welchen Zweck konkret, ein Bildschirm- oder Print-Papier ICC Profil?
  2. Added some Python scripts for determining and extracting ICC profiles in image files to my forum helper tools thread.
  3. 😀 That's Adobe's ATN action binary file format. And yes PS actions etc. are pretty cool and much more powerful than those limited APh macros. - I've once (long time ago) wrote a tool for translating individual PS actions between localisations. Let's hope so!
  4. Here's my companion Python GUI script (based on the above shown ICC info related scripts code) which can extract ICC Profiles out of JPG/PNG image files. Usage & Download: > pip install pillow > python3 image_icc_extractor.py image_icc_extractor.py
  5. Here's a GUI version of the previous shown Python script, which can print out the embedded ICC profile infos for a loaded in jpg/png image. Usage & Download: > pip install pillow > python3 image_icc_info_gui.py image_icc_info_gui.py
  6. Ilford FP (Wikipedia) Ilford XP2 Some of the Ilford films were ISO wise very good pushable, for shooting under darker daylight conditions.
  7. Most stuff I used in my analog B&W darkroom times were from Ilford, as their products were widely available in germany too and more cost efficient than Agfa, Kodak etc.
  8. As a school boy I had a Black & white darkroom and so dealing more with B&W film, as it was overall easier to handle and more cost effective. Most used stuff (accesories, chemistry, papers, ... etc.) therefor was from Ilford & Agfa, as that was available at several places in the city. B&W film wise I tested & feeded my Nikon FM2 + FE2 with nearly every brands B&W films.
  9. As I often mentioned in this forum for ‘High Efficiency’ NEFs ... So in order to support ‘High Efficiency’ NEFs, any RAW Converter vendor has to use either Nikon's own development SDK or probably the TicoRAW SDK (...the later costs them additional money). Of course, by using one of the RAW converters which do support to decode Nikon he* NEFs, so some software (NX Studio, ACR/LG, C1, DxO, ...) which makes use of above named SDKs. - Apple's RAW Engine itself, AFAIK actually doesn't (according to their list from 26 September 2023).
  10. In past analog times you also didn't bought something called a greyscale film, you've bought instead an accordingly named black & white film.
  11. See ... Create new documents Where 8-bit grayscale would result into a color space (gamut) supporting of 2^8 = 256 grey tone colors and 16-bit grayscale then means that up to 2^16 = 65536 shades of gray would be supported. - A plain 1-bit mode (1^2 = 2) so supporting really just two colors, aka only a black and white color here is not available in APh. Further for many scanners, scanning in 16-bit grayscale then reducing to 8-bit grayscale usually improves shadow and highlight detail in/for 8-bit grayscale images.
  12. Sure as it's a different OS and there the whole is also more vendor's printer model driver related. - Examples ... Canon presets Epson presets HP presets Ricoh presets ... ... and so on, so the whole varies between vendors and their respected printer model drivers ...
  13. Well beside that MS should know best how to reuse and enhance what system printer drivers offer, it's a matter of how things are programmed and reused here in/for apps. That's under macOS usually too the case, as you also can make own presets there. Save frequently used print settings for routine printing on Mac macos printer presets ... and so on ...
  14. For printing the print dialog is a shared component from the OS related printer driver, so that's probably when opened always initialized to it's defaults. Also there is no own APub printing preset handling available for that shared printer driver panel (AFAI can see).
  15. Depends on how you opened the file, so if it is placed/dragged as an embedded image into a document, or instead directly via the "File -> Open ... menu. Further what data (pixels or vectors) the exportet PDF/SVG contains. For pixel/bitmap data you would have to switch open to ADe Pixel Persona in order to alter pixel data (images etc.). If possible you can attach the PDF/SVG here (if it's not too huge in size) so people can take a look at it and then tell you more concreate how to deal with. Other than that see ... ADe v2 Online Help Persona Toolbar Open documents and images Importing PDF documents ... etc.
  16. Try to automate this task via Apple Automator & scripting, put it on some shortcut/keystroke etc. https://photosautomation.com/ https://photosautomation.com/export-action.html etc. See also related ... Use a RAW file as the original in Photos on Mac There are also several other ways to interact with Apple Photos via some other scripting languages, as for example Python ... OSXPhotos PhotoScript PyXA ... ... which allow you then via scripting, to export certain images from Photos as orig RAW and in turn to open then APh with that passed over RAW file etc.
  17. Image file in the sense of a pixel/bitmap image or a vector drawing? - However open them into ADe via "File -> Open ..." and then edit them.
  18. Here's a little Python script which can print out embedded ICC profile infos, for an as an argument passed over jpg/png image. #!/usr/bin/env python3 # -*- coding: utf-8 -*- # # Prints out jpg/png image embedded ICC profile file infos # # Provided by v_kyr # Freely reusable. # import io import argparse from PIL import Image from PIL import ImageCms # Apply plain arg parsing parser = argparse.ArgumentParser() parser.add_argument('filename') args = parser.parse_args() # Handle image open & ICC profile extraction into a byte stream img = Image.open(args.filename) icc = img.info.get('icc_profile') f = io.BytesIO(icc) # Prints out ICC profile infos, as far as there is one embedded if len(f.getvalue()) > 0: prf = ImageCms.ImageCmsProfile(f) print ('ICC profile name: ' + ImageCms.getProfileName(prf), end="") print ('ICC profile decription: ' + ImageCms.getProfileDescription(prf), end="") print ('ICC profile info: ' + ImageCms.getProfileInfo(prf), end="") else: print ('No ICC profile found in ' + args.filename) image_icc_info.py
  19. See ... ... and other forum threads about alternative DAM software ... dam site:forum.affinity.serif.com
  20. Look under the ADe preferences if it maybe has been setup there accidently in a more global manner.
  21. I assume you've used "Layer>New Live Filter Layer" (Live Perspective filter). - Look after the ADe app's "Settings (preferences) -> Performance options", if there under Hardware Acceleration is Metal or OpenGL computing used. If it is set to Metal tryout OpenGL instead.
  22. I think the OP want's instead to modify all selected nodes at all together via their handles, which isn't possible (...at least not in v1 app). - No my video shows just instead how to convert all node types accordingly to smooth types, so they get all the necessary handles (as I initially thought that this was meant). But altering all selected node handles at once in ADe v1 doesn't work, that feature is missing.
  23. screencast_star.mp4 But afterwards changing all selected multiple bezier handles together isn't (AFAIK and as GarryP told) yet possible.
  24. I've already thought all of that, as I've already seen a bunch of other even Apple own software related differences between these OS'es, like ... macOS locked files unlocked by iPadOs ... etc.
×
×
  • 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.