• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to create corner borders with a single border artwork

Community Beginner ,
Mar 19, 2021 Mar 19, 2021

Copy link to clipboard

Copied

Hi everyone,


I currently have this border artwork (in a straight line & print repeat pattern), but i'm wondering how i can make it into a corner border as well for a rectangular artwork.

 

An example of a corner border:

 

Faniah_0-1616222891636.png

 

Views

163

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Community Expert ,
Mar 20, 2021 Mar 20, 2021

Copy link to clipboard

Copied

You might be able to duplicate the patter to four layers, then use a layer mask that hides the corners at a 45 degree angle to create the mitered look.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 20, 2021 Mar 20, 2021

Copy link to clipboard

Copied

Hi Chuck, thanks for the tips! So i did the 4 layers, but i'm stuck at the layer mask part. How do i hide the corners at a 45 degree angle with the layer mask?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 20, 2021 Mar 20, 2021

Copy link to clipboard

Copied

LATEST

I create a little script years ago to create a mitered one inch selection on the document left side. I used the script in action that fill it with a frame pattern in a new layer. the was the duplicated an rotated 180 and aligned to the document right side. These frame layer were above the top and bottom frame pieces. In case there were rounding issues with the mitered selection there would be no gaps in the corners for the top and bottom frame pieces were not mitered. 

 

// The author accepts no liability for any problems arising from its use.


/*
<javascriptresource>
<about>$$$/JavaScripts/OneInchMiteredLeftEdgeSelection/About=JJMack's One Inch Mitered Left Edge Selection.^r^rCopyright 2009 Mouseprints.^r^rScript utility for action.^rNOTE:One Inch Mitered Left Edge Selection!</about>
<category>JJMack's Action Utility</category>
</javascriptresource>
*/

leftsideframeselect(); 

function leftsideframeselect () { 

// validate that a document is open 
if (documents.length < 1) { 
	alert("No Open Document!"); 
	return; 
	} 

// Set the ruler units to PIXELS
var orig_ruler_units = app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS;

var doc = activeDocument;
var height = doc.height.value;
var dpi = doc.resolution;

var frameRef = [
[0,0],
[0,height],
[dpi,(height-dpi)],
[dpi,dpi],
]

doc.selection.select(frameRef);

// Reset units to original settings
app.preferences.rulerUnits = orig_ruler_units;
}
JJMack

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 20, 2021 Mar 20, 2021

Copy link to clipboard

Copied

If you create mitered mask the corner patterns will not line up unless the patters are like wood  molding patterns even then you have to rotate the patterns to line up correctly. 

FramingFrames.jpg

JJMack

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines