Photoshop-Cafe.de :: Dein Photoshop-Forum

Zurück   Photoshop-Cafe.de :: Dein Photoshop-Forum > Fragen zu Adobe Photoshop (Elements), zur Creative Suite und anderen Kreativprogrammen > Hilfestellung, Tipps und Tricks

Hinweise
Aktuelles aus dem PSC
„Kreativ Hallo Du!
Das Userbattle zwischen Caradhras und wackelelvis hat begonnen. Kommt ⇒ hierher, um die beiden Battler anzufeuern und zu plaudern.
Hier findest du unser Thema für den P-S-C 06/2024: ⇒ Tattookunst - erstelle ein Tattoo auf einer Hand. Bis 31.12.2024 kannst du dir was dazu ausdenken.
Das Foto-Thema für November 2024 ist ⇒ Holz.
Zur C-C-C für November 2024 gehts hier lang: ⇒ Hunde .
Unterstützung für das PSC
ACHTUNG: Regeln für die Verwendung von KI-Bildern im PSC.
Bitte sorgfältig durchlesen und beachten!

Antwort
 
Themen-Optionen Ansicht
  #11  
Alt 06.08.13, 23:19
Quick Flicks Quick Flicks ist offline
hat sich eingelebt
 
Registriert seit: 06/2013
Beiträge: 73
OS: Win 8
Kreativ-Software: CS6 trial
Quick Flicks geht den richtigen Weg
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." );
}
Mit Zitat antworten
Antwort

Lesezeichen


Aktive Benutzer in diesem Thema: 2 (Registrierte Benutzer: 0, Gäste: 2)
 

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

BB-Code ist An.
Smileys sind An.
[IMG] Code ist An.
HTML-Code ist Aus.

Gehe zu

Ä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
Tutorials Photoshop Elements Farbige Wolken dorftrottel Fortgeschrittene Techniken 3 14.09.09 13:26
Farbige Pinselspitzen reghack Hilfestellung, Tipps und Tricks 15 08.09.09 21:28
Tutorials Photoshop 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


Alle Zeitangaben in WEZ +2. Es ist jetzt 13:45 Uhr.

Impressum

Kontakt      Photoshop-Cafe      Archiv     Impressum     Nach oben

Powered by vBulletin® Version 3.8.7 (Deutsch)
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
©2005-2020 photoshop-cafe.de

Seite wurde generiert in 0,04343 Sekunden mit 10 Queries