09.01.2011, 13:43
...
ich würd es so machen:
1. Rahmen und Füllobjekt erstellen
![[Bild: 225277cc867e2233e251fe073ab17b78.jpg]](http://www.inspire-net.de/demos/picpro/img/jpg/225277cc867e2233e251fe073ab17b78.jpg)
2. Mit IrfanView und der Batch Konvertierung die Bilder anpassen.
![[Bild: f7ffd0baeb16440200695ad35accddd5.jpg]](http://www.inspire-net.de/demos/picpro/img/jpg/f7ffd0baeb16440200695ad35accddd5.jpg)
3. Die Bilder auf das Füllobjekt anwenden.
![[Bild: a03ceb27a6a4708ac3f196f7b977f3c9.jpg]](http://www.inspire-net.de/demos/picpro/img/jpg/a03ceb27a6a4708ac3f196f7b977f3c9.jpg)
Das mit dem Füllobjekt spart die ganze Radiererei der Ecken, dann als PNG speichern und fertig.
![[Bild: 223e6ea4f8d9738dc190c746e66f2342.png]](http://www.inspire-net.de/demos/picpro/img/png/223e6ea4f8d9738dc190c746e66f2342.png)
Falls Du die Bilder nicht fest mit dem Rahmen verbinden willst, z.B. weil die als Webseite dargestellt werden sollen, geht auch das:
1. Rahmen als PNG Datei speichern.
2. Bilder seperat speichern
3. Das ganze als HTML Datei so anlegen
[HTML]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>Untitled</title>
<style type="text/css">
/* - - - - - - - - - - - - - - - - - - - - */
/* BODY */
/* - - - - - - - - - - - - - - - - - - - - */
body, html {
background: #F5F6F8;
font-family: Verdana, Arial, sans-serif;
font-size: 12px;
color: #000000;
margin: 0 0 5px 0;
padding: 0;
}
/* - - - - - - - - - - - - - - - - - - - - */
/* Contentbox */
/* - - - - - - - - - - - - - - - - - - - - */
#inhalt {
margin:10px auto;
text-align:left;
width: 850px;
}
/* - - - - - - - - - - - - - - - - - - - - */
/* Bilder */
/* - - - - - - - - - - - - - - - - - - - - */
.bilder {
position: relative;
display: inline;
width: 385px;
float: left;
margin: 10px;
}
.txt {
position: absolute;
top:320px; left:20px;
z-index:1;
width: 350px;
color: #ffffff
}
</style>
</head>
<body>
<div id="inhalt">
<div class="bilder" style="background: url('bild1.jpg'); background-position: 15px 15px; background-repeat: no-repeat;"><div class="txt">Text zum Bild 1</div><img src="rahmen.png" alt="" width="393" height="393" border="0"></div>
<div class="bilder" style="background: url('bild2.jpg'); background-position: 15px 15px; background-repeat: no-repeat;"><div class="txt">Text zum Bild 2</div><img src="rahmen.png" alt="" width="393" height="393" border="0"></div>
</div>
</body>
</html>[/HTML]
So schaut das dann aus...
http://www.inspire-net.de/images/seite.html
Der Rahmen liegt hier vor dem Hintergrundbild (die Bilder an sich), darüber liegt dann noch ein Textbereich.
Cu Helmut
ich würd es so machen:
1. Rahmen und Füllobjekt erstellen
![[Bild: 225277cc867e2233e251fe073ab17b78.jpg]](http://www.inspire-net.de/demos/picpro/img/jpg/225277cc867e2233e251fe073ab17b78.jpg)
2. Mit IrfanView und der Batch Konvertierung die Bilder anpassen.
![[Bild: f7ffd0baeb16440200695ad35accddd5.jpg]](http://www.inspire-net.de/demos/picpro/img/jpg/f7ffd0baeb16440200695ad35accddd5.jpg)
3. Die Bilder auf das Füllobjekt anwenden.
![[Bild: a03ceb27a6a4708ac3f196f7b977f3c9.jpg]](http://www.inspire-net.de/demos/picpro/img/jpg/a03ceb27a6a4708ac3f196f7b977f3c9.jpg)
Das mit dem Füllobjekt spart die ganze Radiererei der Ecken, dann als PNG speichern und fertig.
![[Bild: 223e6ea4f8d9738dc190c746e66f2342.png]](http://www.inspire-net.de/demos/picpro/img/png/223e6ea4f8d9738dc190c746e66f2342.png)
Falls Du die Bilder nicht fest mit dem Rahmen verbinden willst, z.B. weil die als Webseite dargestellt werden sollen, geht auch das:
1. Rahmen als PNG Datei speichern.
2. Bilder seperat speichern
3. Das ganze als HTML Datei so anlegen
[HTML]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>Untitled</title>
<style type="text/css">
/* - - - - - - - - - - - - - - - - - - - - */
/* BODY */
/* - - - - - - - - - - - - - - - - - - - - */
body, html {
background: #F5F6F8;
font-family: Verdana, Arial, sans-serif;
font-size: 12px;
color: #000000;
margin: 0 0 5px 0;
padding: 0;
}
/* - - - - - - - - - - - - - - - - - - - - */
/* Contentbox */
/* - - - - - - - - - - - - - - - - - - - - */
#inhalt {
margin:10px auto;
text-align:left;
width: 850px;
}
/* - - - - - - - - - - - - - - - - - - - - */
/* Bilder */
/* - - - - - - - - - - - - - - - - - - - - */
.bilder {
position: relative;
display: inline;
width: 385px;
float: left;
margin: 10px;
}
.txt {
position: absolute;
top:320px; left:20px;
z-index:1;
width: 350px;
color: #ffffff
}
</style>
</head>
<body>
<div id="inhalt">
<div class="bilder" style="background: url('bild1.jpg'); background-position: 15px 15px; background-repeat: no-repeat;"><div class="txt">Text zum Bild 1</div><img src="rahmen.png" alt="" width="393" height="393" border="0"></div>
<div class="bilder" style="background: url('bild2.jpg'); background-position: 15px 15px; background-repeat: no-repeat;"><div class="txt">Text zum Bild 2</div><img src="rahmen.png" alt="" width="393" height="393" border="0"></div>
</div>
</body>
</html>[/HTML]
So schaut das dann aus...
http://www.inspire-net.de/images/seite.html
Der Rahmen liegt hier vor dem Hintergrundbild (die Bilder an sich), darüber liegt dann noch ein Textbereich.
Cu Helmut
![[-]](https://forum.juergens-workshops.de/images/collapse.png)