#11
|
|||
|
|||
Eine andere Möglichkeit wäre nur eine Copyright Beschriftung.
Dieses Skript setz die beschriftung in weiß immer in die untere linke Ecke egal ob das Bild in Horizontal oder Vertical ist. Es ist in Ihrem Namen aber Sie können natürlich das ändern auch die Größe und Farbe. if ( documents.length > 0 ) { /* This script will add copyright information and filename on a text layer */ // set units to pixels var originalRulerUnits = preferences.rulerUnits; preferences.rulerUnits = Units.PERCENT; try { // add art layer var docRef = activeDocument; var artLayerRef = docRef.artLayers.add(); artLayerRef.kind = LayerKind.TEXT; // Personalize your values in the section below // Copyright info var myCopyrightText = "© Fotografie by Martin H."; // select opacity artLayerRef.opacity = 100; // select the text colour var newColour = new SolidColor(); if (docRef.mode == DocumentMode.CMYK) { newColour.cmyk.cyan = 255; newColour.cmyk.magenta = 255; newColour.cmyk.yellow = 255; newColour.cmyk.black = 0; } if (docRef.mode = DocumentMode.RGB) { newColour.rgb.red = 255; newColour.rgb.green = 255; newColour.rgb.blue = 255; } artLayerRef.textItem.color = newColour; // select the font name artLayerRef.textItem.font = "Arial"; // select the font size artLayerRef.textItem.size = 24; // select the text position - this can be an absolute value too, eg. (10,20) artLayerRef.textItem.position = new Array (2,98); // Personalize your values in the section above // add text item on the art layer var textItemRef = artLayerRef.textItem; // text contents is copyright info textItemRef.contents = myCopyrightText; // dereference pointers docRef = null; artLayerRef = null; textItemRef = null; myCopyrightText = null; newColour = null; } catch( e ) { // received and error ... throw it back to the user preferences.rulerUnits = originalRulerUnits; throw e; } preferences.rulerUnits = originalRulerUnits; } else { alert( "Open a document first." ); } |
Lesezeichen |
Aktive Benutzer in diesem Thema: 2 (Registrierte Benutzer: 0, Gäste: 2) | |
|
|
Ähnliche Themen | ||||
Thema | Autor | Forum | Antworten | Letzter Beitrag |
PSC Stempel für .abr vektorisieren | Garion | Hilfestellung, Tipps und Tricks | 3 | 13.08.10 13:20 |
Farbige Wolken | dorftrottel | Fortgeschrittene Techniken | 3 | 14.09.09 13:26 |
Farbige Pinselspitzen | reghack | Hilfestellung, Tipps und Tricks | 15 | 08.09.09 21:28 |
Stempel [Photoshop 7] | blindguard | Fortgeschrittene Techniken | 17 | 15.06.07 18:32 |
[Aktionen] Stempel | blindguard | Materialien (Stile, Brushes, Aktionen etc.) | 0 | 01.07.05 22:38 |