summaryrefslogtreecommitdiffstats
path: root/images
diff options
context:
space:
mode:
authorTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2005-11-23 06:30:23 +0000
committerTommy Reynolds <Tommy.Reynolds@MegaCoder.com>2005-11-23 06:30:23 +0000
commit2d57d1c9184b3602323c75903dd30e385fada7d5 (patch)
treea5085f8cd88da105a704f2259984cfa996e7e9d9 /images
parentf2a9f4d1e04f1e56625fc1fc19a92cdb277dd926 (diff)
downloadfedora-doc-utils-2d57d1c9184b3602323c75903dd30e385fada7d5.tar.gz
fedora-doc-utils-2d57d1c9184b3602323c75903dd30e385fada7d5.tar.xz
fedora-doc-utils-2d57d1c9184b3602323c75903dd30e385fada7d5.zip
Sample DRAFT watermark image, SVG source, and a Makefile to rule them all.
Diffstat (limited to 'images')
-rw-r--r--images/Makefile17
-rw-r--r--images/watermark.pngbin0 -> 43111 bytes
-rw-r--r--images/watermark.svg16
3 files changed, 33 insertions, 0 deletions
diff --git a/images/Makefile b/images/Makefile
new file mode 100644
index 0000000..a983b31
--- /dev/null
+++ b/images/Makefile
@@ -0,0 +1,17 @@
+.SUFFIXES: .png .svg
+
+%.png: %.svg
+ batik -m image/png -h 768 -w 1024 -d `pwd`/$@ file://`pwd`/$<
+
+SVGFILES=watermark.svg
+PNGFILES=${SVGFILES:.svg=.png}
+
+all: ${PNGFILES}
+
+clean:
+
+distclean clobber: clean
+ ${RM} ${PNGFILES}
+
+check: ${PNGFILES}
+ xv ${PNGFILES}
diff --git a/images/watermark.png b/images/watermark.png
new file mode 100644
index 0000000..3ad58b8
--- /dev/null
+++ b/images/watermark.png
Binary files differ
diff --git a/images/watermark.svg b/images/watermark.svg
new file mode 100644
index 0000000..a862638
--- /dev/null
+++ b/images/watermark.svg
@@ -0,0 +1,16 @@
+<?xml version="1.0"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+ "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"[
+ <!ENTITY bgColor "rgb( 200, 200, 200 )" >
+ <!ENTITY fgColor "rgb( 255, 100, 100 )" >
+]>
+<svg viewBox="0 0 1023 767" xmlns="http://www.w3.org/2000/svg" version="1.1">
+ <title>Fedora Doc Project Watermark</title>
+ <desc>The word DRAFT rendered in grey at 45 degrees</desc>
+ <g fill="&bgColor;" font-family="Helvetica" font-size="1in" stroke="&bgColor;" stroke-width="10" text-anchor="start" transform="translate( 1, 1 )">
+ <g transform="translate( 512, 384 ) rotate( -45 )">
+ <text font-stretch="wider" text-anchor="middle" x="0" y="0">DRAFT</text>
+ <text fill="&fgColor;" font-size="0.6in" font-stretch="wider" stroke="rgb( 230, 200, 200 )" stroke-width="1.5" text-anchor="middle" x="0" y="1in">Not for reference.</text>
+ </g>
+ </g>
+</svg>