Flipping Image Vertically

Clash Royale CLAN TAG#URR8PPP
up vote
4
down vote
favorite
I am trying to create a template with a border round the edges but struggling to flip an image to fit in.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
endtikzpicture
blindtext
enddocument
Using the above code with this file https://gist.github.com/anonymous/9035028
tikz-pgf
add a comment |Â
up vote
4
down vote
favorite
I am trying to create a template with a border round the edges but struggling to flip an image to fit in.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
endtikzpicture
blindtext
enddocument
Using the above code with this file https://gist.github.com/anonymous/9035028
tikz-pgf
add a comment |Â
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I am trying to create a template with a border round the edges but struggling to flip an image to fit in.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
endtikzpicture
blindtext
enddocument
Using the above code with this file https://gist.github.com/anonymous/9035028
tikz-pgf
I am trying to create a template with a border round the edges but struggling to flip an image to fit in.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
endtikzpicture
blindtext
enddocument
Using the above code with this file https://gist.github.com/anonymous/9035028
tikz-pgf
edited Aug 6 at 12:04
Raaja
1,0981521
1,0981521
asked Aug 6 at 12:00
Megan
211
211
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
4
down vote
You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

add a comment |Â
up vote
3
down vote
I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at (current page.north east) ornamentscale=1;
node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
endtikzpicture
blindtext
enddocument
You can play with (x,y) shifts to align as you want.

+1 for usingreflectboxandrotatebox, but one should really not nest tikzpictures.
â marmot
Aug 6 at 14:16
@marmot New totikz:D But will keep that in mind :)
â Raaja
Aug 6 at 14:18
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

add a comment |Â
up vote
4
down vote
You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

add a comment |Â
up vote
4
down vote
up vote
4
down vote
You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
newsaveboxOrnament
saveboxOrnamentornamentscale=1
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
useboxOrnament;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
useboxOrnament;
endtikzpicture
blindtext
enddocument

answered Aug 6 at 14:14
marmot
48.6k34395
48.6k34395
add a comment |Â
add a comment |Â
up vote
3
down vote
I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at (current page.north east) ornamentscale=1;
node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
endtikzpicture
blindtext
enddocument
You can play with (x,y) shifts to align as you want.

+1 for usingreflectboxandrotatebox, but one should really not nest tikzpictures.
â marmot
Aug 6 at 14:16
@marmot New totikz:D But will keep that in mind :)
â Raaja
Aug 6 at 14:18
add a comment |Â
up vote
3
down vote
I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at (current page.north east) ornamentscale=1;
node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
endtikzpicture
blindtext
enddocument
You can play with (x,y) shifts to align as you want.

+1 for usingreflectboxandrotatebox, but one should really not nest tikzpictures.
â marmot
Aug 6 at 14:16
@marmot New totikz:D But will keep that in mind :)
â Raaja
Aug 6 at 14:18
add a comment |Â
up vote
3
down vote
up vote
3
down vote
I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at (current page.north east) ornamentscale=1;
node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
endtikzpicture
blindtext
enddocument
You can play with (x,y) shifts to align as you want.

I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results
documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at (current page.north east) ornamentscale=1;
node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
endtikzpicture
blindtext
enddocument
You can play with (x,y) shifts to align as you want.

answered Aug 6 at 12:17
Raaja
1,0981521
1,0981521
+1 for usingreflectboxandrotatebox, but one should really not nest tikzpictures.
â marmot
Aug 6 at 14:16
@marmot New totikz:D But will keep that in mind :)
â Raaja
Aug 6 at 14:18
add a comment |Â
+1 for usingreflectboxandrotatebox, but one should really not nest tikzpictures.
â marmot
Aug 6 at 14:16
@marmot New totikz:D But will keep that in mind :)
â Raaja
Aug 6 at 14:18
+1 for using
reflectbox and rotatebox, but one should really not nest tikzpictures.â marmot
Aug 6 at 14:16
+1 for using
reflectbox and rotatebox, but one should really not nest tikzpictures.â marmot
Aug 6 at 14:16
@marmot New to
tikz :D But will keep that in mind :)â Raaja
Aug 6 at 14:18
@marmot New to
tikz :D But will keep that in mind :)â Raaja
Aug 6 at 14:18
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f444819%2fflipping-image-vertically%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password