• Hey Guest, don't forget to VOTE on each RFC topic. Your voting determine Chevereto development! No votes, no development.
  • Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

FSK18

DeCysos

Phoenix Foto Service
Translated into english
---------------------------
💡Describe your idea

In the overview of all images or categories, the individual images are displayed, if there are images which are marked as free (FSK18) are displayed in the Admin menu (/dashboard/settings/content) as obfuscated.
My idea is that these images also get a small graphic which shows the FSK18. In a place of your own choice (in any corner on the edge). You could take that in the admin menu (dashboard) with pure.
I have written an example of how to do this. Certainly there are alternative possibilities.

👏Where did you saw this?

I have not seen it anywhere.
But I have made an example, which can be seen at the following link.
Example:
🔥Interest outside our community

No link or discussion available.

------------
In Deutsch
------------
💡Beschreibe Deine Idee

In der Übersicht aller Bilder oder Kategorien werden die einzelnen Bilder dargestellt, wenn dort Bilder welche als Freizügig (FSK18) markiert dabei sind werden können diese im Adminmenü (/dashboard/settings/content) als verschleiert dargestellt werden.
Meine Idee ist es, das diese Bilder zudem noch eine kleine Grafik bekommen welche die FSK18 anzeigt. An einem Ort der eigenen Wahl (in irgendeiner Ecke am Rand). Die könnte man im Adminmenü (Dashboard) noch mit rein nehmen.
Ich habe hierzu ein Beispiel geschrieben, wie man dies machen könnte. Sicherlich gibt es noch Alternativmöglichkeiten.

👏Wo hast du das gesehen?

Gesehen habe ich es nirgends.
Aber ich habe hierzu ein Beispiel gemacht, welches man unter folgendem Link ansehen kann.
Beispiel:
🔥Interesse außerhalb unserer Community

Kein Link oder Diskussion darüber vorhanden.


[CODE lang="html" title="Beispielcode - sample code"]<!DOCTYPE HTML>
<html xml:lang="de" lang="de" dir="ltr" class="device-nonmobile tone-dark top-bar-black unsafe-blur-on" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8">
<title>Beispiele für FSK Bilder</title>
<style type="text/css">
#beschr {
font-weight: bold;
font-family: Arial;
font-size: 14px;
background-color: #61a3d8;
width: 500px;
padding: 2px;
text-align: center;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
#fazit {
font-family: Arial;
font-size: 12px;
width: 500px;
padding: 2px;
text-align: center;
background-color: #becbd6;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
}
.image-container {
height: 282px;
width: 501px;
position: relative;
}
.image {
background: url("deinbild.png");
height: 282px;
width: 501px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.pixeling {
-webkit-filter: blur(5px);
filter: blur(5px);
}
.pixeling:hover {
-webkit-filter: blur(0px);
filter: blur(0px);
transition: 0.4s;
}

.rechts-oben {
background-image: url("fsk_ab_18_logo.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: absolute;
height: 25px;
width: 25px;
top: 2px;
right: 2px;
}
.rechts-unten {
background-image: url("fsk_ab_18_logo.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: absolute;
height: 25px;
width: 25px;
bottom: 2px;
right: 2px;
}
</style>
</head>

<body>
<p id="beschr">FSK Rechts Oben - mit IMG TAG</p>
<div class="image-container">
<img class="pixeling" src="deinbild.png" width="501" height="282" alt="Bildname">
<div class="rechts-oben"></div>
</div>
<p id="fazit" style="background-color:eek:range;">Bild kann per Rechtsklick kopiert werden.<br />Optimal um im Image-TAG weitere Informationen unter zu bringen.<br />Bild muss mit Breite und Höhe angegeben werden, da sich sonst das Element über den rest setzt.</p>

<p id="beschr">FSK Rechts Oben - Bild verpixelt (FSK sichtbar)</p>
<div class="image-container">
<div class="image pixeling"></div>
<div class="rechts-oben"></div>
</div>
<p id="fazit" style="background-color:#27db5d;">Bild kann nicht mit Rechtsklick kopiert werden.<br />Negativ: Kein image-TAG.<br />Positiv: Höhe passt sich automatisch an.</p>

<p id="beschr">FSK Rechts Unten - Komplett verpixelt</p>
<div class="image pixeling">
<div class="rechts-unten"></div>
</div>
<p id="fazit" style="background-color:red;">Bild kann nicht kopiert werden aber die FSK Grafik ist ebenfalls verpixelt.</p>

</body>
</html>[/CODE]
 
If I get this right, FSK 18 is a rating system isn't? In that case, I think that it will be better to think in customizable ratings rather than a fixed set.
 
Right, that's a rating system.
There is ...
FSK = "voluntary self-control of the film industry", for films and other media
and
USK = "self-control entertainment software", for games & software

Yes, what I mean.
Is that if you upload a picture there as FSK 18 (or 16) can mark and later in the album preview is also macked.
Currently, images are only rendered obfuscated using a web filter.

Yes, I know it is still not a real protection but rather a bauble.
 

Attachments

  • 9d18bd7a-14dc-4062-b6b1-e70e3f9a710a.png
    9d18bd7a-14dc-4062-b6b1-e70e3f9a710a.png
    144.1 KB · Views: 6
  • 845bf272-3c6c-428c-b052-e43590e130b5.png
    845bf272-3c6c-428c-b052-e43590e130b5.png
    10.1 KB · Views: 6
Back
Top