Seite 1 von 2

Neue Testversion 22.40b9

Verfasst: Mi 15 Jul 2020 13:25
von Gerhard Huber
Hallo,

es gibt wieder eine neue Testversion 22.40b9.
Das hat jetzt etwas länger gedauert, weil wir an der macOS-Version für ARM gearbeitet haben.
Übrigens haben wir auch die Windows-Version mal für ARM compiliert, sollte dann auf Windows für Arm laufen. Allerdings steht uns kein Testgerät zur Verfügung.

Windows:
http://www.pl32.com/beta/pl2240b9.zip

Mac OS:
http://www.pl32.com/beta/plx2240b9.zip
Universal Binary (ARM/Apple Silicon und x86, 64-Bit):
http://www.pl32.com/beta/plx2240b9u.zip

Neues:
  • Textstile: Zuweisung kann wieder gelöscht werden
  • Scripting: open-Befehl mit zusätzlichen Optionen (z.B. kann von eingebetteten Daten gelesen werden)
  • PDF-Import: Fehlerhafte Type0-Fonts mit TrueType-Namen ("Times New Roman,Bold") werden gelesen
  • Diverse Fehlerbehebungen und kleinere Verbesserungen

Re: Neue Testversion 22.40b9

Verfasst: Mi 15 Jul 2020 15:26
von gmhofmann
WINE/Ubuntu: Läuft sauber...

Re: Neue Testversion 22.40b9

Verfasst: Mi 15 Jul 2020 17:34
von russellcottrell
Hello; is there any documentation for opening a document using embedded data? (I couldn't find it.)

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 08:57
von shijan
Finally we can set custom Clip level values field for "Auto Mode for all channels" as it was requested long time ago! Great Great! But not sure why hide this little option so deep in additional window in Photoshop-like style. Anyway custom Clip level was must have option.
Separate Auto Correction controls group also feels like logical way to go.
Bild

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 09:13
von shijan
And finally we have support for 1D (gamma only) cube LUTs!

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 09:22
von Martin Huber
russellcottrell hat geschrieben: Mi 15 Jul 2020 17:34 Hello; is there any documentation for opening a document using embedded data? (I couldn't find it.)
The command is:
IApplication: Open(filename[, optionKey, optionValue]+)

The new key/value pairs are:
- “AddToRecentFiles” as Boolean. Default: FALSE
- “Data” as Byte [] or Base64 string or hex string: If present, the document will be opened with this data instead of a file.
- “CreatePlaceholder” as Boolean: TRUE: The new document will contain a single placeholder layer containing the file/data. Default: FALSE
- “EmbedFile” as Boolean: If “CreatePlaceholder” is TRUE, “EmbedFile” controls whether the file data will be embedded in the new document. Default: FALSE

Sample script opening an embedded document (the actual data have been shortened):

Code: Alles auswählen

Dim pl
Dim doc

Set pl = CreateObject("PhotoLine.Application")

pl.Visible = TRUE
Set doc = pl.Open("data based file", "Data", "iVBORw0KhEUgAAAGQAAABkCAAAAABVicqIAAAACXBIWXMAAAsTAAALEwEAmpwYAAAK" & _
(...) "TkSuQmCC")
If Not doc Is Nothing Then
	Dim layer
	
	Set layer = doc.RootLayer.First
	If Not layer Is Nothing Then
		' Set first layer in document as active layer
		doc.ActiveLayer = layer
	End If
End If
Martin

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 09:49
von shijan
Here is UI idea for more user friendly Clipping Level input:
Bild

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 13:32
von shijan
Also here small cosmetic problem. Is it possible to sort LUTs list by name?
Here are how they look in folder ~/Library/Preferences/PhotoLine/ColorLookup:
Bild

And here are how they appears in PhotoLine list:
Bild

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 14:01
von Juan
I'm having redraw issues with the Levels Adjustment Layer.
Check this video:
https://youtu.be/_aIkusxGfyo

Cheers,
Juan

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 14:47
von Gerhard Huber
Juan hat geschrieben: Do 16 Jul 2020 14:01 I'm having redraw issues with the Levels Adjustment Layer.
I will fix this.

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 17:51
von WSNetwork
Bei der Histogrammkorrektur verschiebt sich der neue Schalter für die Voreinstellungen nicht, wenn das Fenster vertikal vergrößert wird.

Viele Grüße

Werner
Histogrammkorrektur.jpg

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 22:31
von der_fotograf
Bei mir fehlt bei den Levels das Icon für »Custom«

Ausserdem sind in dem Vorschaubild des Dialogs horizontale Streifen:

Screen Shot 2020-07-16 at 22.29.35.jpg

Re: Neue Testversion 22.40b9

Verfasst: Do 16 Jul 2020 22:43
von shijan
When i switch between windows, Levels preview don't updated:
Bild

Re: Neue Testversion 22.40b9

Verfasst: Fr 17 Jul 2020 19:28
von Juan
Hi all,

I have noticed delay on the eye icons when many layers are selected.
https://youtu.be/D2VbxnCnfqk

Cheers,
Juan

Re: Neue Testversion 22.40b9

Verfasst: Fr 17 Jul 2020 19:40
von russellcottrell
Hello; creating the data based document works, but I can't figure out how to return to a previous document. What I need to do is copy the new document then paste it into another. If I do

var doc = pl.ActiveDocument;

then create a new document and copy it, this does not seem to work:

pl.ActiveDocument = doc;