muh
@ -1,73 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
|
|
||||||
<title>
|
|
||||||
Huffman Coding Visualization
|
|
||||||
</title>
|
|
||||||
|
|
||||||
<!-- css sheet for how the page is laid out -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="visualizationPageStyle.css">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- jqueury stuff. Only used for the animation speed slider. -->
|
|
||||||
<link rel="stylesheet" href="ThirdParty/jquery-ui-1.8.11.custom.css">
|
|
||||||
|
|
||||||
<script src="ThirdParty/jquery-1.5.2.min.js"></script>
|
|
||||||
<script src="ThirdParty/jquery-ui-1.8.11.custom.min.js"></script>
|
|
||||||
|
|
||||||
<!-- Javascript for the actual visualization code -->
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/CustomEvents.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/UndoFunctions.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedObject.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedLabel.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedCircle.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedRectangle.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/AnimatedLinkedList.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/HighlightCircle.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/Line.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/ObjectManager.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AnimationLibrary/AnimationMain.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AlgorithmLibrary/Algorithm.js"> </script>
|
|
||||||
<script type = "text/javascript" src = "AlgorithmLibrary/Huffman.js"> </script>
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body onload="init();" class="VisualizationMainPage">
|
|
||||||
|
|
||||||
<div id = "container">
|
|
||||||
|
|
||||||
<div id="header">
|
|
||||||
<h1>Huffman Coding</h1>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id = "mainContent">
|
|
||||||
|
|
||||||
<div id = "algoControlSection">
|
|
||||||
<!-- Table for buttons to control specific animation (insert/find/etc) -->
|
|
||||||
<!-- (filled in by javascript code specific to the animtion) -->
|
|
||||||
<table id="AlgorithmSpecificControls"> </table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Drawing canvas where all animation is done. Note: can be resized in code -->
|
|
||||||
|
|
||||||
<canvas id="canvas" width="1000" height="500"></canvas>
|
|
||||||
|
|
||||||
<div id = "generalAnimationControlSection">
|
|
||||||
<!-- Table for buttons to control general animation (play/pause/undo/etc) ->
|
|
||||||
<!-- (filled in by javascript code, specifically AnimationMain.js) -->
|
|
||||||
|
|
||||||
<table id="GeneralAnimationControls"> </table>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div> <!-- mainContent -->
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
<p><a href="Algorithms.html">Algorithm Visualizations</a></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div><!-- container -->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
60
m114/Tag4/README.md
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
## Tag 4 - Verlustfreie Datenreduktion / Huffmann / RLE / LZW
|
||||||
|
|
||||||
|
|
||||||
|
00_Entropy in Compression (what is the minimum to compress data)
|
||||||
|
<br>12:11 min, YouTube, E
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=M5c_RFKVkko
|
||||||
|
|
||||||
|
|
||||||
|
- [01_Datenreduktion1.pdf](01_Datenreduktion1.pdf)
|
||||||
|
|
||||||
|
### Huffman Algorithmus
|
||||||
|
|
||||||
|
01_Huffman-Algorithmus - Vorlesung
|
||||||
|
<br>Verweis: http://www.ziegenbalg.ph-karlsruhe.de/materialien-homepage-jzbg/cc-interaktiv/huffman/mathinfkom.pdf
|
||||||
|
|
||||||
|
01_Huffman-Animation
|
||||||
|
<br>Verweis: https://people.ok.ubc.ca/ylucet/DS/Huffman.html
|
||||||
|
|
||||||
|
|
||||||
|
01_Huffman-Codierung - (So geht´s) - deutsch
|
||||||
|
<br>7:22 min, YouTube
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=eSlpTPXbhYw
|
||||||
|
|
||||||
|
|
||||||
|
- [01_HuffmanLSG.ppt](01_HuffmanLSG.ppt)
|
||||||
|
|
||||||
|
|
||||||
|
### Datenreduktion durch niedrigere Bildauflösung, RLE
|
||||||
|
|
||||||
|
- [02_RLE_Datenreduktion2.pdf](02_RLE_Datenreduktion2.pdf)
|
||||||
|
|
||||||
|
- [02_RLE_Datenreduktion_Loesung_Bitberechnung.doc](02_RLE_Datenreduktion_Loesung_Bitberechnung.doc)
|
||||||
|
|
||||||
|
- 02_RLE_Lauflängencodierung
|
||||||
|
<br>Verweis: https://de.ccm.net/contents/665-rle-komprimierung-lauflaengencodierung
|
||||||
|
<br>Verweis: https://de.wikipedia.org/wiki/Laufl%C3%A4ngenkodierung
|
||||||
|
<br>2:06 min, YouTube, D
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=QQbLs3vZcqQ
|
||||||
|
|
||||||
|
|
||||||
|
### Burrows-Wheeler Transformation BWT
|
||||||
|
|
||||||
|
- [03_BWT_Datenreduktion3.pdf](03_BWT_Datenreduktion3.pdf)
|
||||||
|
|
||||||
|
19:03 min, E, YouTube, 27.2.2015, GoogleDeveloppers
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=4WRANhDiSHM
|
||||||
|
|
||||||
|
|
||||||
|
### Lempel-Ziv-Welch Algorithmus (LZW, LZ77, ~zip)
|
||||||
|
|
||||||
|
- [04_LZW_Datenreduktion4.pdf](04_LZW_Datenreduktion4.pdf)
|
||||||
|
|
||||||
|
04_LZ77_Compression
|
||||||
|
<br>8:42 min, YouTube, E
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=goOa3DGezUA
|
||||||
|
|
||||||
|
04_LZW_Algorithmus
|
||||||
|
<br>Verweis: https://de.wikipedia.org/wiki/Lempel-Ziv-Welch-Algorithmus
|
||||||
|
|
||||||
|
|
@ -1,301 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html class="client-nojs" lang="de" dir="ltr">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8"/>
|
|
||||||
<title>Interlacing (Grafiken) – Wikipedia</title>
|
|
||||||
<script>document.documentElement.className="client-js";RLCONF={"wgBreakFrames":false,"wgSeparatorTransformTable":[",\t.",".\t,"],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],"wgRequestId":"d3cbf9a2-7ac3-473c-98c2-e11e4575b860","wgCSPNonce":false,"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":false,"wgNamespaceNumber":0,"wgPageName":"Interlacing_(Grafiken)","wgTitle":"Interlacing (Grafiken)","wgCurRevisionId":218032208,"wgRevisionId":218032208,"wgArticleId":418634,"wgIsArticle":true,"wgIsRedirect":false,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Computergrafik"],"wgPageContentLanguage":"de","wgPageContentModel":"wikitext","wgRelevantPageName":"Interlacing_(Grafiken)","wgRelevantArticleId":418634,"wgIsProbablyEditable":true,"wgRelevantPageIsProbablyEditable":true,"wgRestrictionEdit":[],"wgRestrictionMove":[],
|
|
||||||
"wgFlaggedRevsParams":{"tags":{"accuracy":{"levels":1}}},"wgStableRevisionId":218032208,"wgVisualEditor":{"pageLanguageCode":"de","pageLanguageDir":"ltr","pageVariantFallbacks":"de"},"wgMFDisplayWikibaseDescriptions":{"search":true,"nearby":true,"watchlist":true,"tagline":true},"wgWMESchemaEditAttemptStepOversample":false,"wgWMEPageLength":2000,"wgNoticeProject":"wikipedia","wgMediaViewerOnClick":true,"wgMediaViewerEnabledByDefault":true,"wgPopupsFlags":4,"wgULSCurrentAutonym":"Deutsch","wgEditSubmitButtonLabelPublish":true,"wgCentralAuthMobileDomain":false,"wgULSPosition":"interlanguage","wgULSisCompactLinksEnabled":true,"wgWikibaseItemId":"Q1666173"};RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","user.styles":"ready","ext.globalCssJs.user":"ready","user":"ready","user.options":"loading","ext.flaggedRevs.icons":"ready","oojs-ui-core.styles":"ready","oojs-ui.styles.indicators":"ready","mediawiki.widgets.styles":"ready","oojs-ui-core.icons":"ready",
|
|
||||||
"skins.vector.styles.legacy":"ready","ext.flaggedRevs.basic":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.wikimediaBadges":"ready","ext.uls.interlanguage":"ready","wikibase.client.init":"ready"};RLPAGEMODULES=["site","mediawiki.page.ready","skins.vector.legacy.js","ext.flaggedRevs.advanced","mmv.head","mmv.bootstrap.autostart","ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.cx.eventlogging.campaigns","ext.centralNotice.geoIP","ext.centralNotice.startUp","ext.gadget.WikiMiniAtlas","ext.gadget.OpenStreetMap","ext.gadget.CommonsDirekt","ext.gadget.desktopHauptseite","ext.centralauth.centralautologin","ext.popups","ext.uls.compactlinks","ext.uls.interface","ext.growthExperiments.SuggestedEditSession"];</script>
|
|
||||||
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.implement("user.options@1i9g4",function($,jQuery,require,module){mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});});});</script>
|
|
||||||
<link rel="stylesheet" href="/w/load.php?lang=de&modules=ext.flaggedRevs.basic%2Cicons%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cmediawiki.widgets.styles%7Coojs-ui-core.icons%2Cstyles%7Coojs-ui.styles.indicators%7Cskins.vector.styles.legacy%7Cwikibase.client.init&only=styles&skin=vector"/>
|
|
||||||
<script async="" src="/w/load.php?lang=de&modules=startup&only=scripts&raw=1&skin=vector"></script>
|
|
||||||
<meta name="ResourceLoaderDynamicStyles" content=""/>
|
|
||||||
<link rel="stylesheet" href="/w/load.php?lang=de&modules=site.styles&only=styles&skin=vector"/>
|
|
||||||
<meta name="generator" content="MediaWiki 1.39.0-wmf.10"/>
|
|
||||||
<meta name="referrer" content="origin"/>
|
|
||||||
<meta name="referrer" content="origin-when-crossorigin"/>
|
|
||||||
<meta name="referrer" content="origin-when-cross-origin"/>
|
|
||||||
<meta name="format-detection" content="telephone=no"/>
|
|
||||||
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/2/27/Adam7_passes.gif"/>
|
|
||||||
<meta property="og:image:width" content="1200"/>
|
|
||||||
<meta property="og:image:height" content="1200"/>
|
|
||||||
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/2/27/Adam7_passes.gif"/>
|
|
||||||
<meta property="og:image:width" content="800"/>
|
|
||||||
<meta property="og:image:height" content="800"/>
|
|
||||||
<meta property="og:image:width" content="640"/>
|
|
||||||
<meta property="og:image:height" content="640"/>
|
|
||||||
<meta property="og:title" content="Interlacing (Grafiken) – Wikipedia"/>
|
|
||||||
<meta property="og:type" content="website"/>
|
|
||||||
<link rel="preconnect" href="//upload.wikimedia.org"/>
|
|
||||||
<link rel="alternate" media="only screen and (max-width: 720px)" href="//de.m.wikipedia.org/wiki/Interlacing_(Grafiken)"/>
|
|
||||||
<link rel="alternate" type="application/x-wiki" title="Seite bearbeiten" href="/w/index.php?title=Interlacing_(Grafiken)&action=edit"/>
|
|
||||||
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png"/>
|
|
||||||
<link rel="shortcut icon" href="/static/favicon/wikipedia.ico"/>
|
|
||||||
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (de)"/>
|
|
||||||
<link rel="EditURI" type="application/rsd+xml" href="//de.wikipedia.org/w/api.php?action=rsd"/>
|
|
||||||
<link rel="license" href="https://creativecommons.org/licenses/by-sa/3.0/"/>
|
|
||||||
<link rel="canonical" href="https://de.wikipedia.org/wiki/Interlacing_(Grafiken)"/>
|
|
||||||
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
|
|
||||||
<link rel="dns-prefetch" href="//login.wikimedia.org"/>
|
|
||||||
</head>
|
|
||||||
<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-Interlacing_Grafiken rootpage-Interlacing_Grafiken skin-vector action-view skin-vector-legacy"><div id="mw-page-base" class="noprint"></div>
|
|
||||||
<div id="mw-head-base" class="noprint"></div>
|
|
||||||
<div id="content" class="mw-body" role="main">
|
|
||||||
<a id="top"></a>
|
|
||||||
<div id="siteNotice"><!-- CentralNotice --></div>
|
|
||||||
<div class="mw-indicators">
|
|
||||||
</div>
|
|
||||||
<h1 id="firstHeading" class="firstHeading mw-first-heading">Interlacing (Grafiken)</h1>
|
|
||||||
<div id="bodyContent" class="vector-body">
|
|
||||||
<div id="siteSub" class="noprint">aus Wikipedia, der freien Enzyklopädie</div>
|
|
||||||
<div id="contentSub"></div>
|
|
||||||
<div id="contentSub2"></div>
|
|
||||||
|
|
||||||
<div id="jump-to-nav"></div>
|
|
||||||
<a class="mw-jump-link" href="#mw-head">Zur Navigation springen</a>
|
|
||||||
<a class="mw-jump-link" href="#searchInput">Zur Suche springen</a>
|
|
||||||
<div id="mw-content-text" class="mw-body-content mw-content-ltr" lang="de" dir="ltr"><div class="mw-parser-output"><div class="thumb tright"><div class="thumbinner" style="width:151px;"><a href="/wiki/Datei:Adam7_passes.gif" class="image"><img alt="" src="//upload.wikimedia.org/wikipedia/commons/2/27/Adam7_passes.gif" decoding="async" width="149" height="149" class="thumbimage" data-file-width="149" data-file-height="149" /></a> <div class="thumbcaption"><div class="magnify"><a href="/wiki/Datei:Adam7_passes.gif" class="internal" title="vergrößern und Informationen zum Bild anzeigen"></a></div>Schematische Darstellung des Adam7-Interlacings bei einem 16×16-Pixel-Bild</div></div></div>
|
|
||||||
<p>Als <b><span lang="en">Interlace</span></b> oder <b><span lang="en">Interlacing</span></b> (englische Aussprache [<style data-mw-deduplicate="TemplateStyles:r181124515">.mw-parser-output .IPA a{text-decoration:none}</style><span class="IPA"><a href="/wiki/Liste_der_IPA-Zeichen" title="Liste der IPA-Zeichen"><span title="Aussprache im Internationalen Phonetischen Alphabet (IPA)">ˌɪntəˈleɪsɪŋ</span></a></span>]) wird ein Speicherverfahren für <a href="/wiki/Rastergrafik" title="Rastergrafik">Rastergrafiken</a> bezeichnet, welches beim Laden einer Grafik den schnellen Aufbau eines Übersicht- oder <a href="/wiki/Vorschaubild" title="Vorschaubild">Vorschaubildes</a> (in der vollen Bildgröße) ermöglicht.
|
|
||||||
</p>
|
|
||||||
<h2><span class="mw-headline" id="Technische_Details">Technische Details</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Interlacing_(Grafiken)&veaction=edit&section=1" class="mw-editsection-visualeditor" title="Abschnitt bearbeiten: Technische Details">Bearbeiten</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Interlacing_(Grafiken)&action=edit&section=1" title="Abschnitt bearbeiten: Technische Details">Quelltext bearbeiten</a><span class="mw-editsection-bracket">]</span></span></h2>
|
|
||||||
<p>Ursprünglich wurde das <i>Interlace</i>-Verfahren dadurch erreicht, dass am Anfang der automatisch bearbeiteten Grafikdatei nur jede achte Bildzeile und danach die fehlenden Zeilen gespeichert wurden. Dies ähnelt dem <a href="/wiki/Zeilensprungverfahren" title="Zeilensprungverfahren">Zeilensprungverfahren</a> bei der Darstellung von Fernsehbildern, das im Englischen ebenfalls als <i><span lang="en">interlacing</span></i> bezeichnet wird. Bei neueren Verfahren (siehe <a href="/wiki/Adam7" title="Adam7">Adam7</a>) wird eine zweidimensionale Auswahl der Bildpunkte abgespeichert.
|
|
||||||
</p><p>Beim langsamen Laden eines Bildes, etwa über eine Verbindung mit geringer <a href="/wiki/Daten%C3%BCbertragungsrate" title="Datenübertragungsrate">Datenübertragungsrate</a>, hat ein Betrachter den Eindruck, dass das Bild während des Aufbaus immer schärfer und detailreicher wird. Vorteilhaft ist diese Methode des Abspeicherns, wenn die Ladezeit eines Bildes groß ist. Allerdings wird die Grafikdatei dadurch zusätzlich vergrößert.
|
|
||||||
</p><p>Die Grafikformate <a href="/wiki/Graphics_Interchange_Format" title="Graphics Interchange Format">GIF</a>, <a href="/wiki/Portable_Network_Graphics" title="Portable Network Graphics">PNG</a>, <a href="/wiki/Kodak_Photo_CD" title="Kodak Photo CD">Kodak Photo CD</a> und <a href="/wiki/JPEG" title="JPEG">Progressives JPEG</a> unterstützen Interlacing.
|
|
||||||
</p><p>Zu beachten ist, dass dieses Verfahren bei JPEG <i>progressiv</i> genannt wird, obwohl im Englischen die beiden Begriffe <i><span lang="en">progressive</span></i> (für das <a href="/wiki/Vollbildverfahren" title="Vollbildverfahren">Vollbildverfahren</a>) und <i><span lang="en">interlaced</span></i> (für das <a href="/wiki/Zeilensprungverfahren" title="Zeilensprungverfahren">Zeilensprungverfahren</a>) Gegensätze sind, wenn damit die Verfahren des Bildaufbaus bei der Fernsehtechnik gemeint sind.
|
|
||||||
</p>
|
|
||||||
<h2><span class="mw-headline" id="Weblinks">Weblinks</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=Interlacing_(Grafiken)&veaction=edit&section=2" class="mw-editsection-visualeditor" title="Abschnitt bearbeiten: Weblinks">Bearbeiten</a><span class="mw-editsection-divider"> | </span><a href="/w/index.php?title=Interlacing_(Grafiken)&action=edit&section=2" title="Abschnitt bearbeiten: Weblinks">Quelltext bearbeiten</a><span class="mw-editsection-bracket">]</span></span></h2>
|
|
||||||
<ul><li><span class="cite">Stephan T. Lavavej: <a rel="nofollow" class="external text" href="https://nuwen.net/png.html"><i>Introduction to PNG.</i></a> In: <i>nuwen.net.</i><span class="Abrufdatum" style="display:none"> Abgerufen am 26. August 2020</span> (englisch, u. a. Vergleich von Interlacing bei GIF und PNG).</span><span style="display: none;" class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rfr_id=info%3Asid%2Fde.wikipedia.org%3AInterlacing+%28Grafiken%29&rft.title=Introduction+to+PNG&rft.description=Introduction+to+PNG&rft.identifier=https%3A%2F%2Fnuwen.net%2Fpng.html&rft.creator=Stephan+T.+Lavavej&rft.language=en"> </span></li>
|
|
||||||
<li><span class="cite"><a rel="nofollow" class="external text" href="https://www.sciencedirect.com/topics/computer-science/interlaced-video"><i>Interlaced Video.</i></a> In: <i><a href="/wiki/ScienceDirect" title="ScienceDirect">ScienceDirect</a>.</i><span class="Abrufdatum" style="display:none"> Abgerufen am 25. August 2020</span> (englisch, Überblick zu ScienceDirect-Literatur über Interlaced Video mit Direktzugang zu den betreffenden Kapiteln/Beiträgen (als eingeschränkter Preview)).</span><span style="display: none;" class="Z3988" title="ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Adc&rfr_id=info%3Asid%2Fde.wikipedia.org%3AInterlacing+%28Grafiken%29&rft.title=Interlaced+Video&rft.description=Interlaced+Video&rft.identifier=https%3A%2F%2Fwww.sciencedirect.com%2Ftopics%2Fcomputer-science%2Finterlaced-video&rft.language=en"> </span></li></ul></div><noscript><img src="//de.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript>
|
|
||||||
<div class="printfooter">Abgerufen von „<a dir="ltr" href="https://de.wikipedia.org/w/index.php?title=Interlacing_(Grafiken)&oldid=218032208">https://de.wikipedia.org/w/index.php?title=Interlacing_(Grafiken)&oldid=218032208</a>“</div></div>
|
|
||||||
<div id="catlinks" class="catlinks" data-mw="interface"><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Wikipedia:Kategorien" title="Wikipedia:Kategorien">Kategorie</a>: <ul><li><a href="/wiki/Kategorie:Computergrafik" title="Kategorie:Computergrafik">Computergrafik</a></li></ul></div></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id='mw-data-after-content'>
|
|
||||||
<div class="read-more-container"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="mw-navigation">
|
|
||||||
<h2>Navigationsmenü</h2>
|
|
||||||
<div id="mw-head">
|
|
||||||
|
|
||||||
<nav id="p-personal" class="mw-portlet mw-portlet-personal vector-user-menu-legacy vector-menu" aria-labelledby="p-personal-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-personal-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Meine Werkzeuge</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li id="pt-anonuserpage" class="mw-list-item"><span title="Benutzerseite der IP-Adresse von der aus du Änderungen durchführst">Nicht angemeldet</span></li><li id="pt-anontalk" class="mw-list-item"><a href="/wiki/Spezial:Meine_Diskussionsseite" title="Diskussion über Änderungen von dieser IP-Adresse [n]" accesskey="n"><span>Diskussionsseite</span></a></li><li id="pt-anoncontribs" class="mw-list-item"><a href="/wiki/Spezial:Meine_Beitr%C3%A4ge" title="Eine Liste der Bearbeitungen, die von dieser IP-Adresse gemacht wurden [y]" accesskey="y"><span>Beiträge</span></a></li><li id="pt-createaccount" class="mw-list-item"><a href="/w/index.php?title=Spezial:Benutzerkonto_anlegen&returnto=Interlacing+%28Grafiken%29" title="Wir ermutigen dich dazu, ein Benutzerkonto zu erstellen und dich anzumelden. Es ist jedoch nicht zwingend erforderlich."><span>Benutzerkonto erstellen</span></a></li><li id="pt-login" class="mw-list-item"><a href="/w/index.php?title=Spezial:Anmelden&returnto=Interlacing+%28Grafiken%29" title="Anmelden ist zwar keine Pflicht, wird aber gerne gesehen. [o]" accesskey="o"><span>Anmelden</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div id="left-navigation">
|
|
||||||
|
|
||||||
<nav id="p-namespaces" class="mw-portlet mw-portlet-namespaces vector-menu vector-menu-tabs" aria-labelledby="p-namespaces-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-namespaces-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Namensräume</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li id="ca-nstab-main" class="selected mw-list-item"><a href="/wiki/Interlacing_(Grafiken)" title="Seiteninhalt anzeigen [c]" accesskey="c"><span>Artikel</span></a></li><li id="ca-talk" class="mw-list-item"><a href="/wiki/Diskussion:Interlacing_(Grafiken)" rel="discussion" title="Diskussion zum Seiteninhalt [t]" accesskey="t"><span>Diskussion</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="p-variants" class="mw-portlet mw-portlet-variants emptyPortlet vector-menu-dropdown-noicon vector-menu vector-menu-dropdown" aria-labelledby="p-variants-label" role="navigation"
|
|
||||||
>
|
|
||||||
<input type="checkbox"
|
|
||||||
id="p-variants-checkbox"
|
|
||||||
role="button"
|
|
||||||
aria-haspopup="true"
|
|
||||||
data-event-name="ui.dropdown-p-variants"
|
|
||||||
class="vector-menu-checkbox" aria-labelledby="p-variants-label" />
|
|
||||||
<label id="p-variants-label" aria-label="Sprachvariante ändern" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Deutsch</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div id="right-navigation">
|
|
||||||
|
|
||||||
<nav id="p-views" class="mw-portlet mw-portlet-views vector-menu vector-menu-tabs" aria-labelledby="p-views-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-views-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Ansichten</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li id="ca-view" class="selected mw-list-item"><a href="/wiki/Interlacing_(Grafiken)"><span>Lesen</span></a></li><li id="ca-ve-edit" class="mw-list-item"><a href="/w/index.php?title=Interlacing_(Grafiken)&veaction=edit" title="Diese Seite mit dem VisualEditor bearbeiten [v]" accesskey="v"><span>Bearbeiten</span></a></li><li id="ca-edit" class="collapsible mw-list-item"><a href="/w/index.php?title=Interlacing_(Grafiken)&action=edit" title="Diese Seite bearbeiten [e]" accesskey="e"><span>Quelltext bearbeiten</span></a></li><li id="ca-history" class="mw-list-item"><a href="/w/index.php?title=Interlacing_(Grafiken)&action=history" title="Frühere Versionen dieser Seite [h]" accesskey="h"><span>Versionsgeschichte</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="p-cactions" class="mw-portlet mw-portlet-cactions emptyPortlet vector-menu-dropdown-noicon vector-menu vector-menu-dropdown" aria-labelledby="p-cactions-label" role="navigation" title="Weitere Optionen"
|
|
||||||
>
|
|
||||||
<input type="checkbox"
|
|
||||||
id="p-cactions-checkbox"
|
|
||||||
role="button"
|
|
||||||
aria-haspopup="true"
|
|
||||||
data-event-name="ui.dropdown-p-cactions"
|
|
||||||
class="vector-menu-checkbox" aria-labelledby="p-cactions-label" />
|
|
||||||
<label id="p-cactions-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Weitere</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="p-search" role="search" class="vector-search-box-vue vector-search-box-show-thumbnail vector-search-box-auto-expand-width vector-search-box">
|
|
||||||
<div>
|
|
||||||
<h3 >
|
|
||||||
<label for="searchInput">Suche</label>
|
|
||||||
</h3>
|
|
||||||
<form action="/w/index.php" id="searchform"
|
|
||||||
class="vector-search-box-form">
|
|
||||||
<div id="simpleSearch"
|
|
||||||
class="vector-search-box-inner"
|
|
||||||
data-search-loc="header-navigation">
|
|
||||||
<input class="vector-search-box-input"
|
|
||||||
type="search" name="search" placeholder="Wikipedia durchsuchen" aria-label="Wikipedia durchsuchen" autocapitalize="sentences" title="Durchsuche die Wikipedia [f]" accesskey="f" id="searchInput"
|
|
||||||
/>
|
|
||||||
<input type="hidden" name="title" value="Spezial:Suche"/>
|
|
||||||
<input id="mw-searchButton"
|
|
||||||
class="searchButton mw-fallbackSearchButton" type="submit" name="fulltext" title="Suche nach Seiten, die diesen Text enthalten" value="Suchen" />
|
|
||||||
<input id="searchButton"
|
|
||||||
class="searchButton" type="submit" name="go" title="Gehe direkt zu der Seite mit genau diesem Namen, falls sie vorhanden ist." value="Artikel" />
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="mw-panel">
|
|
||||||
<div id="p-logo" role="banner">
|
|
||||||
<a class="mw-wiki-logo" href="/wiki/Wikipedia:Hauptseite"
|
|
||||||
title="Hauptseite"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<nav id="p-navigation" class="mw-portlet mw-portlet-navigation vector-menu vector-menu-portal portal" aria-labelledby="p-navigation-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-navigation-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Navigation</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li id="n-mainpage-description" class="mw-list-item"><a href="/wiki/Wikipedia:Hauptseite" icon="home" title="Hauptseite besuchen [z]" accesskey="z"><span>Hauptseite</span></a></li><li id="n-topics" class="mw-list-item"><a href="/wiki/Portal:Wikipedia_nach_Themen"><span>Themenportale</span></a></li><li id="n-randompage" class="mw-list-item"><a href="/wiki/Spezial:Zuf%C3%A4llige_Seite" icon="die" title="Zufällige Seite aufrufen [x]" accesskey="x"><span>Zufälliger Artikel</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="p-Mitmachen" class="mw-portlet mw-portlet-Mitmachen vector-menu vector-menu-portal portal" aria-labelledby="p-Mitmachen-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-Mitmachen-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Mitmachen</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li id="n-Artikel-verbessern" class="mw-list-item"><a href="/wiki/Wikipedia:Beteiligen"><span>Artikel verbessern</span></a></li><li id="n-Neuerartikel" class="mw-list-item"><a href="/wiki/Hilfe:Neuen_Artikel_anlegen"><span>Neuen Artikel anlegen</span></a></li><li id="n-portal" class="mw-list-item"><a href="/wiki/Wikipedia:Autorenportal" title="Info-Zentrum über Beteiligungsmöglichkeiten"><span>Autorenportal</span></a></li><li id="n-help" class="mw-list-item"><a href="/wiki/Hilfe:%C3%9Cbersicht" icon="help" title="Übersicht über Hilfeseiten"><span>Hilfe</span></a></li><li id="n-recentchanges" class="mw-list-item"><a href="/wiki/Spezial:Letzte_%C3%84nderungen" icon="recentChanges" title="Liste der letzten Änderungen in Wikipedia [r]" accesskey="r"><span>Letzte Änderungen</span></a></li><li id="n-contact" class="mw-list-item"><a href="/wiki/Wikipedia:Kontakt" title="Kontaktmöglichkeiten"><span>Kontakt</span></a></li><li id="n-sitesupport" class="mw-list-item"><a href="//donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=C13_de.wikipedia.org&uselang=de" title="Unterstütze uns"><span>Spenden</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<nav id="p-tb" class="mw-portlet mw-portlet-tb vector-menu vector-menu-portal portal" aria-labelledby="p-tb-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-tb-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Werkzeuge</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li id="t-whatlinkshere" class="mw-list-item"><a href="/wiki/Spezial:Linkliste/Interlacing_(Grafiken)" title="Liste aller Seiten, die hierher verlinken [j]" accesskey="j"><span>Links auf diese Seite</span></a></li><li id="t-recentchangeslinked" class="mw-list-item"><a href="/wiki/Spezial:%C3%84nderungen_an_verlinkten_Seiten/Interlacing_(Grafiken)" rel="nofollow" title="Letzte Änderungen an Seiten, die von hier verlinkt sind [k]" accesskey="k"><span>Änderungen an verlinkten Seiten</span></a></li><li id="t-specialpages" class="mw-list-item"><a href="/wiki/Spezial:Spezialseiten" title="Liste aller Spezialseiten [q]" accesskey="q"><span>Spezialseiten</span></a></li><li id="t-permalink" class="mw-list-item"><a href="/w/index.php?title=Interlacing_(Grafiken)&oldid=218032208" title="Dauerhafter Link zu dieser Seitenversion"><span>Permanenter Link</span></a></li><li id="t-info" class="mw-list-item"><a href="/w/index.php?title=Interlacing_(Grafiken)&action=info" title="Weitere Informationen über diese Seite"><span>Seiteninformationen</span></a></li><li id="t-cite" class="mw-list-item"><a href="/w/index.php?title=Spezial:Zitierhilfe&page=Interlacing_%28Grafiken%29&id=218032208&wpFormIdentifier=titleform" title="Hinweise, wie diese Seite zitiert werden kann"><span>Artikel zitieren</span></a></li><li id="t-wikibase" class="mw-list-item"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q1666173" title="Link zum verbundenen Objekt im Datenrepositorium [g]" accesskey="g"><span>Wikidata-Datenobjekt</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<nav id="p-coll-print_export" class="mw-portlet mw-portlet-coll-print_export vector-menu vector-menu-portal portal" aria-labelledby="p-coll-print_export-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-coll-print_export-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">Drucken/exportieren</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li id="coll-create_a_book" class="mw-list-item"><a href="/w/index.php?title=Spezial:Buch&bookcmd=book_creator&referer=Interlacing+%28Grafiken%29"><span>Buch erstellen</span></a></li><li id="coll-download-as-rl" class="mw-list-item"><a href="/w/index.php?title=Spezial:DownloadAsPdf&page=Interlacing_%28Grafiken%29&action=show-download-screen"><span>Als PDF herunterladen</span></a></li><li id="t-print" class="mw-list-item"><a href="/w/index.php?title=Interlacing_(Grafiken)&printable=yes" title="Druckansicht dieser Seite [p]" accesskey="p"><span>Druckversion</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<nav id="p-wikibase-otherprojects" class="mw-portlet mw-portlet-wikibase-otherprojects vector-menu vector-menu-portal portal" aria-labelledby="p-wikibase-otherprojects-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-wikibase-otherprojects-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">In anderen Projekten</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li class="wb-otherproject-link wb-otherproject-commons mw-list-item"><a href="https://commons.wikimedia.org/wiki/Category:Interlacing" hreflang="en"><span>Commons</span></a></li></ul>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
<nav id="p-lang" class="mw-portlet mw-portlet-lang vector-menu vector-menu-portal portal" aria-labelledby="p-lang-label" role="navigation"
|
|
||||||
>
|
|
||||||
<label id="p-lang-label" aria-label="" class="vector-menu-heading " >
|
|
||||||
<span class="vector-menu-heading-label">In anderen Sprachen</span>
|
|
||||||
</label>
|
|
||||||
<div class="vector-menu-content">
|
|
||||||
|
|
||||||
<ul class="vector-menu-content-list"><li class="interlanguage-link interwiki-cs mw-list-item"><a href="https://cs.wikipedia.org/wiki/Prokl%C3%A1d%C3%A1n%C3%AD_(rastrov%C3%A1_grafika)" title="Prokládání (rastrová grafika) – Tschechisch" lang="cs" hreflang="cs" class="interlanguage-link-target"><span>Čeština</span></a></li><li class="interlanguage-link interwiki-en mw-list-item"><a href="https://en.wikipedia.org/wiki/Interlacing_(bitmaps)" title="Interlacing (bitmaps) – Englisch" lang="en" hreflang="en" class="interlanguage-link-target"><span>English</span></a></li><li class="interlanguage-link interwiki-es mw-list-item"><a href="https://es.wikipedia.org/wiki/Entrelazado_(mapas_de_bits)" title="Entrelazado (mapas de bits) – Spanisch" lang="es" hreflang="es" class="interlanguage-link-target"><span>Español</span></a></li><li class="interlanguage-link interwiki-fr mw-list-item"><a href="https://fr.wikipedia.org/wiki/Entrelacement_(image_matricielle)" title="Entrelacement (image matricielle) – Französisch" lang="fr" hreflang="fr" class="interlanguage-link-target"><span>Français</span></a></li></ul>
|
|
||||||
<div class="after-portlet after-portlet-lang"><span class="wb-langlinks-edit wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q1666173#sitelinks-wikipedia" title="Links auf Artikel in anderen Sprachen bearbeiten" class="wbc-editpage">Links bearbeiten</a></span></div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<footer id="footer" class="mw-footer" role="contentinfo" >
|
|
||||||
<ul id="footer-info">
|
|
||||||
<li id="footer-info-lastmod"> Diese Seite wurde zuletzt am 9. Dezember 2021 um 11:55 Uhr bearbeitet.</li>
|
|
||||||
<li id="footer-info-copyright"><div id="footer-info-copyright-stats" class="noprint"><a class="external" href="https://pageviews.wmcloud.org/?pages=Interlacing_(Grafiken)&project=de.wikipedia.org" rel="nofollow">Abrufstatistik</a> · <a class="external" href=" https://xtools.wmflabs.org/articleinfo-authorship/de.wikipedia.org/Interlacing_(Grafiken)?uselang=de" rel="nofollow">Autoren</a> </div><div id="footer-info-copyright-separator"><br /></div><div id="footer-info-copyright-info">
|
|
||||||
Der Text ist unter der Lizenz <a class="internal" href="https://de.wikipedia.org/wiki/Wikipedia:Lizenzbestimmungen_Creative_Commons_Attribution-ShareAlike_3.0_Unported">„Creative Commons Attribution/Share Alike“</a> verfügbar; Informationen zu den Urhebern und zum Lizenzstatus eingebundener Mediendateien (etwa Bilder oder Videos) können im Regelfall durch Anklicken dieser abgerufen werden. Möglicherweise unterliegen die Inhalte jeweils zusätzlichen Bedingungen. Durch die Nutzung dieser Website erklären Sie sich mit den <a class="internal" href="https://foundation.wikimedia.org/wiki/Terms_of_Use/de">Nutzungsbedingungen</a> und der <a class="internal" href="https://meta.wikimedia.org/wiki/Privacy_policy/de">Datenschutzrichtlinie</a> einverstanden.<br />
|
|
||||||
Wikipedia® ist eine eingetragene Marke der Wikimedia Foundation Inc.</div></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul id="footer-places">
|
|
||||||
<li id="footer-places-privacy"><a href="https://meta.wikimedia.org/wiki/Privacy_policy/de" class="extiw" title="m:Privacy policy/de">Datenschutz</a></li>
|
|
||||||
<li id="footer-places-about"><a href="/wiki/Wikipedia:%C3%9Cber_Wikipedia" title="Wikipedia:Über Wikipedia">Über Wikipedia</a></li>
|
|
||||||
<li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:Impressum" title="Wikipedia:Impressum">Impressum</a></li>
|
|
||||||
<li id="footer-places-mobileview"><a href="//de.m.wikipedia.org/w/index.php?title=Interlacing_(Grafiken)&mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Mobile Ansicht</a></li>
|
|
||||||
<li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Entwickler</a></li>
|
|
||||||
<li id="footer-places-statslink"><a href="https://stats.wikimedia.org/#/de.wikipedia.org">Statistiken</a></li>
|
|
||||||
<li id="footer-places-cookiestatement"><a href="https://foundation.wikimedia.org/wiki/Cookie_statement">Stellungnahme zu Cookies</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<ul id="footer-icons" class="noprint">
|
|
||||||
<li id="footer-copyrightico"><a href="https://wikimediafoundation.org/"><img src="/static/images/footer/wikimedia-button.png" srcset="/static/images/footer/wikimedia-button-1.5x.png 1.5x, /static/images/footer/wikimedia-button-2x.png 2x" width="88" height="31" alt="Wikimedia Foundation" loading="lazy" /></a></li>
|
|
||||||
<li id="footer-poweredbyico"><a href="https://www.mediawiki.org/"><img src="/static/images/footer/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" srcset="/static/images/footer/poweredby_mediawiki_132x47.png 1.5x, /static/images/footer/poweredby_mediawiki_176x62.png 2x" width="88" height="31" loading="lazy"/></a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgPageParseReport":{"limitreport":{"cputime":"0.150","walltime":"0.203","ppvisitednodes":{"value":644,"limit":1000000},"postexpandincludesize":{"value":4566,"limit":2097152},"templateargumentsize":{"value":1794,"limit":2097152},"expansiondepth":{"value":9,"limit":100},"expensivefunctioncount":{"value":1,"limit":500},"unstrip-depth":{"value":0,"limit":20},"unstrip-size":{"value":151,"limit":5000000},"entityaccesscount":{"value":0,"limit":400},"timingprofile":["100.00% 179.446 1 -total"," 61.99% 111.236 2 Vorlage:Internetquelle"," 26.23% 47.075 5 Vorlage:Lang"," 12.95% 23.244 2 Vorlage:Str_len"," 11.28% 20.239 1 Vorlage:IPA"]},"scribunto":{"limitreport-timeusage":{"value":"0.070","limit":"10.000"},"limitreport-memusage":{"value":3389291,"limit":52428800}},"cachereport":{"origin":"mw1387","timestamp":"20220509194535","ttl":1814400,"transientcontent":false}}});});</script>
|
|
||||||
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"Article","name":"Interlacing (Grafiken)","url":"https:\/\/de.wikipedia.org\/wiki\/Interlacing_(Grafiken)","sameAs":"http:\/\/www.wikidata.org\/entity\/Q1666173","mainEntity":"http:\/\/www.wikidata.org\/entity\/Q1666173","author":{"@type":"Organization","name":"Autoren der Wikimedia-Projekte"},"publisher":{"@type":"Organization","name":"Wikimedia Foundation, Inc.","logo":{"@type":"ImageObject","url":"https:\/\/www.wikimedia.org\/static\/images\/wmf-hor-googpub.png"}},"datePublished":"2004-11-01T15:59:40Z","image":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/2\/27\/Adam7_passes.gif"}</script><script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"Article","name":"Interlacing (Grafiken)","url":"https:\/\/de.wikipedia.org\/wiki\/Interlacing_(Grafiken)","sameAs":"http:\/\/www.wikidata.org\/entity\/Q1666173","mainEntity":"http:\/\/www.wikidata.org\/entity\/Q1666173","author":{"@type":"Organization","name":"Autoren der Wikimedia-Projekte"},"publisher":{"@type":"Organization","name":"Wikimedia Foundation, Inc.","logo":{"@type":"ImageObject","url":"https:\/\/www.wikimedia.org\/static\/images\/wmf-hor-googpub.png"}},"datePublished":"2004-11-01T15:59:40Z","image":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/2\/27\/Adam7_passes.gif"}</script>
|
|
||||||
<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgBackendResponseTime":128,"wgHostname":"mw1389"});});</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,268 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>Was ist IrfanView</title>
|
|
||||||
<link rel="shortcut icon" type="image/png" href="images/favicon.png">
|
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
|
||||||
|
|
||||||
<!--[if IE]>
|
|
||||||
<link rel="stylesheet" type="text/css" href="all-ie-only.css" />
|
|
||||||
<![endif]-->
|
|
||||||
<!--[if lte IE 7]>
|
|
||||||
<link rel="stylesheet" type="text/css" href="ie7-and-down.css" />
|
|
||||||
<![endif]-->
|
|
||||||
<!--[if IE 6]>
|
|
||||||
<link rel="stylesheet" type="text/css" href="ie6.css" />
|
|
||||||
<![endif]-->
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<header>
|
|
||||||
<div id="fixed-menu">
|
|
||||||
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
|
|
||||||
<label for="nav-trigger">Menu</label>
|
|
||||||
<div id="top-navigation">
|
|
||||||
<div class="container">
|
|
||||||
<h1 class="logo">
|
|
||||||
<a href="index.htm"><img src="images/logo.png" alt="IrfanView"></a>
|
|
||||||
</h1>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<a href="index.htm" class="home-icon">Home</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="mailto:irfanview@gmx.net" class="email-icon">Send Us an Email</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="" class="mirror-icon">Other Mirrors</a>
|
|
||||||
<select onchange="window.open(this.value,'_blank')">
|
|
||||||
<option value="">Select Mirror</option>
|
|
||||||
<option value="https://www.irfanview.com/">Germany 1</option>
|
|
||||||
<option value="https://www.irfanview.net/">Germany 2</option>
|
|
||||||
<option value="https://www.irfanview.info/">Germany 3</option>
|
|
||||||
<option value="https://www.programosy.pl/program,irfanview.html">Poland</option>
|
|
||||||
<option value="https://alpinefile.ru/irfanview.html/">Russia</option>
|
|
||||||
</select>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="datenschutzerklaerung.htm" class="mirror-icon">Datenschutzerklärung</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="main_what_is_engl.htm" class="english-icon"></a>
|
|
||||||
<a href="main_what_is_ger.htm" class="germany-icon"></a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id="main-navigation">
|
|
||||||
<div class="container">
|
|
||||||
<ul>
|
|
||||||
<li class="dropdown">
|
|
||||||
<a class="caret"><span>Download</span></a>
|
|
||||||
<ul class="dropdown-content">
|
|
||||||
<li><a href="main_download_engl.htm">IrfanView 32-bit</a></li>
|
|
||||||
<li><a href="64bit.htm">IrfanView 64-bit</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="languages.htm">Languages</a></li>
|
|
||||||
<li><a href="plugins.htm">Plugins</a></li>
|
|
||||||
<li><a href="skins.htm">Skins</a></li>
|
|
||||||
<li class="nav-tablet-break"><a href="screenshot.htm">Screenshot</a></li>
|
|
||||||
<li class="dropdown">
|
|
||||||
<a class="caret"><span>About</span></a>
|
|
||||||
<ul class="dropdown-content">
|
|
||||||
<li><a href="main_what_is_engl.htm">What is Irfanview?</a></li>
|
|
||||||
<li><a href="main_history.htm">History of Changes</a></li>
|
|
||||||
<li><a href="main_links_engl.htm">Nice www Links</a></li>
|
|
||||||
<li><a href="main_about.htm">About the Author</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><a href="main_support_engl.htm">Support</a></li>
|
|
||||||
<li><a href="faq.htm">Faq</a></li>
|
|
||||||
<li><a href="https://irfanview-forum.de/" target="_blank">Forum</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
<div class="main">
|
|
||||||
<div class="inner-header">
|
|
||||||
<h2 class="container">
|
|
||||||
Was ist IrfanView?
|
|
||||||
|
|
||||||
</h2>
|
|
||||||
</div>
|
|
||||||
<div class="container">
|
|
||||||
<div class="inner-content">
|
|
||||||
<div class="g-box"><strong class="info">IrfanView ist ein schneller und KOSTENLOSER (für nicht kommerzielle Verwendung) Bildbetrachter für Windows XP, Vista, 7, 8, 10 und 11.</strong>
|
|
||||||
<br/>
|
|
||||||
<br/> (klicken Sie hier um <a href="eula.htm">IrfanView EULA</a> zu lesen)</div>
|
|
||||||
|
|
||||||
<p>Das Programm versucht einfach für Anfänger und gleichzeitig leistungsstark für Profis zu sein. </p>
|
|
||||||
|
|
||||||
<p>IrfanView war der erste Windows Bildbetrachter weltweit mit Unterstützung für animierte GIFs. Einer der ersten Bildbetrachter weltweit mit MultipageTIF Unterstützung. Der erste Bildbetrachter weltweit mit Multiple ICO Unterstützung.</p>
|
|
||||||
<br/>
|
|
||||||
|
|
||||||
<div class="download pure-u-1 pure-u-md-1-2 pure-u-xl-9-24">
|
|
||||||
<div class="l-box">
|
|
||||||
<div class="download-img-desc">
|
|
||||||
<div id="download-desc">
|
|
||||||
<h2>IrfanView runterladen</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id="download-options">
|
|
||||||
<div class="download-option">
|
|
||||||
<p class="download-style-box">IRFANVIEW</p>
|
|
||||||
<div class="btn-group">
|
|
||||||
<a href="https://www.fosshub.com/IrfanView-DE.html" target="_blank" class="download-btn">
|
|
||||||
<font color="#FFFFFF">
|
|
||||||
<strong>DOWNLOAD</strong>
|
|
||||||
<br/><strong>(32 oder 64 bit)</strong></span>
|
|
||||||
</a></font>
|
|
||||||
<a href="download_sites.htm#AlternativeLink" target="_blank" class="plugin-btn">
|
|
||||||
Alternative Seite
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="download-option">
|
|
||||||
<p class="download-style-box">PLUGINS</p>
|
|
||||||
<div class="btn-group">
|
|
||||||
<a href="https://www.fosshub.com/IrfanView-DE.html" target="_blank" class="download-btn">
|
|
||||||
<font color="#FFFFFF">
|
|
||||||
<strong>DOWNLOAD</strong>
|
|
||||||
<br/><span><strong>(32 oder 64 bit)</strong></span>
|
|
||||||
</a></font>
|
|
||||||
<a href="plugins.htm" target="_blank" class="plugin-btn">
|
|
||||||
Alternative Seite
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p><strong>Einige der IrfanView-Funktionen</strong>:</p>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li>32 und 64 bit Version</li>
|
|
||||||
<li>Viele unterstützte Formate (hier <a href="main_formats.htm">für die Liste der Formate anklicken</a>)</li>
|
|
||||||
<li>Unterstützung für mehrere Sprachen</li>
|
|
||||||
<li>Thumbnails/Vorschau</li>
|
|
||||||
<li>Zeichnen von Linien, Kreisen, Pfeilen, Korrektur der Schieflage etc.</li>
|
|
||||||
<li>Skins/Designs für Symbolleiste</li>
|
|
||||||
<li>Slideshow (Speichern der Diashow als EXE/SCR oder brennen auf CD)</li>
|
|
||||||
<li>Anzeigen von EXIF/IPTC/Kommentar während der Slideshow</li>
|
|
||||||
<li>Unterstützung für Adobe Photoshop Filter</li>
|
|
||||||
<li>Schnelles Bewegen durchs Verzeichnis</li>
|
|
||||||
<li>Batch-Konvertierung (mit Bild-Manipulation)</li>
|
|
||||||
<li>Multipage TIFs bearbeiten</li>
|
|
||||||
<li>Datei Suche</li>
|
|
||||||
<li>Mehrere Rückgängig-Schritte</li>
|
|
||||||
<li>Bilder per Email schicken</li>
|
|
||||||
<li>Multimedia-Player</li>
|
|
||||||
<li>Drucken</li>
|
|
||||||
<li>Farbtiefe ändern</li>
|
|
||||||
<li>Unterstützung für eingebettete Farbprofile aus JPG/TIF</li>
|
|
||||||
<li>OCR PlugIn</li>
|
|
||||||
<li>Scanner-Unterstützung (TWAIN)</li>
|
|
||||||
<li>Bilder ausschneiden/freistellen</li>
|
|
||||||
<li>Text/Bild einfügen (Wasserzeichen)</li>
|
|
||||||
<li>Bearbeiten der IPTC-Daten</li>
|
|
||||||
<li>Effekte (Schärfen, Verwischen, Adobe 8BF, Filter Factory, Filter Unlimited, etc.)</li>
|
|
||||||
<li>Fotografieren</li>
|
|
||||||
<li>Icons aus EXE/DLL/ICLs extrahieren</li>
|
|
||||||
<li>Verlustfreie JPG-Operationen</li>
|
|
||||||
<li>Shell-Erweiterung PlugIn</li>
|
|
||||||
<li>Unterstützung für Unicode Dateinamen</li>
|
|
||||||
<li>Viele Tastaturkürzel</li>
|
|
||||||
<li>Option zum Ändern der Menü-Tastaturkürzel (rechter Mausklick aufs Menü)</li>
|
|
||||||
<li>Viele Befehlszeilen-Optionen</li>
|
|
||||||
<li>Viele PlugIns</li>
|
|
||||||
<li>Nur eine EXE-Datei, keine DLLs, keine Shareware Meldungen wie "I Agree" oder "Evaluation expired"</li>
|
|
||||||
<li>Keine selbstständigen Registry-Änderungen!</li>
|
|
||||||
<li>und viel viel mehr</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p>Klicken Sie <a href="screenshot.htm" target="_blank">hier um eine Vorschau</a> von IrfanView zu sehen.</p>
|
|
||||||
|
|
||||||
<br /> In der normalen/englischen IrfanView Version ist <strong>IMMER</strong> auch eine deutsche Version (Menüs/Dialoge) enthalten!
|
|
||||||
<br /> Die Sprache ändern Sie im Menü: <strong>Options->Change language</strong>.</p>
|
|
||||||
|
|
||||||
<p>Falls Sie nur die deutsche Hilfe-Datei benötigen:</p>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://www.irfanview.net/lang/irfanview_lang_deutsch.exe">irfanview_lang_deutsch.exe</a> (Installer, 488 KB, runterladen und starten)
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
<p><strong>VERWENDUNGS-EINSCHRÄNKUNG und LIZENZ</strong> </p>
|
|
||||||
|
|
||||||
<p>IrfanView ist ein kostenloser Bildbetrachter für private Nutzer. </p>
|
|
||||||
|
|
||||||
<p>IrfanView ist also Freeware für die Nutzung an Schulen, Universitäten, Bibliotheken, Museen, in humanitären Organisationen oder Feuerwehr. <br />
|
|
||||||
Firmen und Behörden brauchen Lizenzen für IrfanView. </p>
|
|
||||||
|
|
||||||
<p>Sollten Sie das Programm kommerziell nutzen, müssen Sie es registrieren und erwerben.
|
|
||||||
<br /><strong>Kommerzielle Nutzer</strong> können </strong> <a href="mailto:irfanview@gmx.net">per EMail</a> Infos über Preise/Rabatte/Rechnung bekommen.
|
|
||||||
<br />(Preis für EINE (single User) Lizenz: 10 EUR (netto); Rabatte ab 11 Lizenzen)
|
|
||||||
<br />(unbefristete Lizenz, gilt für alle 32 und 64 bit Versionen)</p>
|
|
||||||
<br />
|
|
||||||
|
|
||||||
<p>Ich arbeite ständig an Erweiterungen und Verbesserungen des Programms. Die Registration ist ein finanzieller Anreiz für mich, um die Funktionen zu erweitern und die Programmqualität zu erhöhen. </p>
|
|
||||||
|
|
||||||
<p>Vorschläge, Reaktionen, Anmerkungen sind willkommen und werden nicht ignoriert. </p>
|
|
||||||
|
|
||||||
<p>Wenn Sie dieses Programm mögen (als Heimanwender/Nutzer/Fans, die die weitere Entwicklung <a href="main_support_engl.htm">unterstützen</a> möchten), können Sie die Software durch das Schicken/Spenden von EUR 10,- an mich (via Paypal/Kreditkarte/Rechnung, siehe unten) registrieren. </p>
|
|
||||||
|
|
||||||
<p><strong>Adresse:</strong>
|
|
||||||
<br /> Irfan Skiljan
|
|
||||||
<br /> Postfach 48
|
|
||||||
<br /> 2700 Wiener Neustadt
|
|
||||||
<br /> Österreich </p>
|
|
||||||
|
|
||||||
<br /><b>Info:</b> Sie können Spenden oder Lizenzen auch mit <a href="main_support_engl.htm"> PayPal oder Kreditkarte kaufen</a>.
|
|
||||||
<center>
|
|
||||||
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" TARGET=_top>
|
|
||||||
<input type="hidden" name="cmd" value="_s-xclick">
|
|
||||||
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-butcc-donate.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
|
|
||||||
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
|
||||||
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----MIIHTwYJKoZIhvcNAQcEoIIHQDCCBzwCAQExggEwMIIBLAIBADCBlDCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20CAQAwDQYJKoZIhvcNAQEBBQAEgYCPAo00aSLNWCCaeiS+hahtgYgUNLWdh229hVLlZOJDnt7IyaUuOYZqygNV+pBcTQ151NSJBhVamfWGqKvjRwjYyefy8uFVPKNsw36V5dxWjWWZQ6ztan+0uJDX1pTCORZWtzBwXF8nWudOf3ANbURUJJz1/pCp8sybAyYMymMIqjELMAkGBSsOAwIaBQAwgcwGCSqGSIb3DQEHATAUBggqhkiG9w0DBwQIejOYwMaWVqaAgahnkLkdRoQ02Pt446+vrFhEKCoK8XJiuEgfPWQ/EcLox0ZfuguoXFnlj8/Cza6nLnldX8md5YwBIdPyi4P9NI03pIOi8ROY34wxXlyJ1wJ4PKe+L27/0/dZDD1kSh0Au2ZbuhUTX0e8QJkXB4TioASjXy4zoQCL/dzgrQPiY4lc3C7ls5/u8Bn456dcO269GxWefHTnZfp17SA4E1MluftmpC3uzlyyXBigggOHMIIDgzCCAuygAwIBAgIBADANBgkqhkiG9w0BAQUFADCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wHhcNMDQwMjEzMTAxMzE1WhcNMzUwMjEzMTAxMzE1WjCBjjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAkNBMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtQYXlQYWwgSW5jLjETMBEGA1UECxQKbGl2ZV9jZXJ0czERMA8GA1UEAxQIbGl2ZV9hcGkxHDAaBgkqhkiG9w0BCQEWDXJlQHBheXBhbC5jb20wgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMFHTt38RMxLXJyO2SmS+Ndl72T7oKJ4u4uw+6awntALWh03PewmIJuzbALScsTS4sZoS1fKciBGoh11gIfHzylvkdNe/hJl66/RGqrj5rFb08sAABNTzDTiqqNpJeBsYs/c2aiGozptX2RlnBktH+SUNpAajW724Nv2Wvhif6sFAgMBAAGjge4wgeswHQYDVR0OBBYEFJaffLvGbxe9WT9S1wob7BDWZJRrMIG7BgNVHSMEgbMwgbCAFJaffLvGbxe9WT9S1wob7BDWZJRroYGUpIGRMIGOMQswCQYDVQQGEwJVUzELMAkGA1UECBMCQ0ExFjAUBgNVBAcTDU1vdW50YWluIFZpZXcxFDASBgNVBAoTC1BheVBhbCBJbmMuMRMwEQYDVQQLFApsaXZlX2NlcnRzMREwDwYDVQQDFAhsaXZlX2FwaTEcMBoGCSqGSIb3DQEJARYNcmVAcGF5cGFsLmNvbYIBADAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4GBAIFfOlaagFrl71+jq6OKidbWFSE+Q4FqROvdgIONth+8kSK//Y/4ihuE4Ymvzn5ceE3S/iBSQQMjyvb+s2TWbQYDwcp129OPIbD9epdr4tJOUNiSojw7BHwYRiPh58S1xGlFgHFXwrEBb3dgNbMUa+u4qectsMAXpVHnD9wIyfmHMYIBmjCCAZYCAQEwgZQwgY4xCzAJBgNVBAYTAlVTMQswCQYDVQQIEwJDQTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLUGF5UGFsIEluYy4xEzARBgNVBAsUCmxpdmVfY2VydHMxETAPBgNVBAMUCGxpdmVfYXBpMRwwGgYJKoZIhvcNAQkBFg1yZUBwYXlwYWwuY29tAgEAMAkGBSsOAwIaBQCgXTAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEPFw0wODAxMjMxMTQxMDdaMCMGCSqGSIb3DQEJBDEWBBQcm17YbSImCV/SlHrtTCsarMbgETANBgkqhkiG9w0BAQEFAASBgBSNEIsEzibc9nnOuMgYBIRlxL58qZb6Rm3uyjFLSvDqXABezSfW/kcmw5UslsP5gLrK0H6lN+RFlrOcyK22ObPYpXesnJB/g8Psps9hiyEKdiLiXchlzKU0JtI09Csdkwf75zgsTw6P5G5qF6ZzRV0BvMZNp9i+Y7iKqJsfoWu2-----END PKCS7-----
|
|
||||||
">
|
|
||||||
</form>
|
|
||||||
<b>Vielen Dank!</b>
|
|
||||||
</center>
|
|
||||||
|
|
||||||
<p>Mit Ihrer Registrierung haben Sie Anspruch auf Unterstützung bei Fragen zur Software und auf nachfolgende Versionen von IrfanView. Ihre Registration wird sichtbar im Menüpunkt "Hilfe->Über". </p>
|
|
||||||
|
|
||||||
<p>Bei Fehlern und Problemen mit der Software schicken Sie mir bitte eine <a href="mailto:irfanview@gmx.net">E-Mail</a> mit einer Fehlerbeschreibung und/oder dem Problembild/Screenshot.
|
|
||||||
<br />
|
|
||||||
<br />
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p><strong>Mein Banner für die Verwendung in anderen WebPages:</strong> <img alt="IrfanView logo by Gismo" src="images/iview_logo.gif" /></p>
|
|
||||||
|
|
||||||
<p> </p>
|
|
||||||
|
|
||||||
<hr size="1">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<footer>
|
|
||||||
<div class="footer-line"></div>
|
|
||||||
<div class="footer-content">
|
|
||||||
<div class="container">
|
|
||||||
<a href="index.htm"><img src="images/logo-footer.png" alt="Footer Logo"></a>
|
|
||||||
<div class="footer-text">Copyright © 1996-2022 by Irfan Skiljan. All Rights Reserved. Hosted by <a href="https://domainunion.de/">domainunion</a>.</div>
|
|
||||||
<div class="playmain">design by <a href="https://playmain.com/" target="_blank">Playmain</a>.</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
102
m114/Tag5/README.md
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
## Tag 5 - Kompression mit Verlust
|
||||||
|
|
||||||
|
Mehr Information Reine Textdatei
|
||||||
|
|
||||||
|
_M114_Tag5_Repetition_Praeinstruktion.txt
|
||||||
|
Aktionen: _M114_Tag5_Repetition_Praeinstruktion.txt
|
||||||
|
520 b
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
Mehr Information Bild (PNG)
|
||||||
|
|
||||||
|
DCT-Koeffizienten.png
|
||||||
|
Aktionen: DCT-Koeffizienten.png
|
||||||
|
55.8 K
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
Mehr Information Powerpoint-Präsentation
|
||||||
|
|
||||||
|
DCTDemo.ppt
|
||||||
|
Aktionen: DCTDemo.ppt
|
||||||
|
3.1 M
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
|
||||||
|
Titel (DC): Folie 1
|
||||||
|
|
||||||
|
Mehr Information Archiv (Zip/Winzip)
|
||||||
|
|
||||||
|
DCTDemo.zip
|
||||||
|
Aktionen: DCTDemo.zip
|
||||||
|
2.0 M
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
M114 - Interlace
|
||||||
|
Aktionen: M114 - Interlace
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-18 11:46
|
||||||
|
|
||||||
|
|
||||||
|
Was bedeutet "interlaced" in Grafiken?
|
||||||
|
Verweis: https://de.wikipedia.org/wiki/Interlacing_(Grafiken)
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
M114 - JPG0 - Colourspaces (JPEG Pt0)- Computerphile
|
||||||
|
Aktionen: M114 - JPG0 - Colourspaces (JPEG Pt0)- Computerphile
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
|
||||||
|
7:30 min, E, YouTube, 10.4.2015
|
||||||
|
Verweis: https://www.youtube.com/watch?v=LFXN9PiOGtY
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
M114 - JPG1 - JPEG 'files' & Colour (JPEG Pt1)- Computerphile
|
||||||
|
Aktionen: M114 - JPG1 - JPEG 'files' & Colour (JPEG Pt1)- Computerphile
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
|
||||||
|
7:17 min, E, YouTube, 21.4.2019
|
||||||
|
Verweis: https://www.youtube.com/watch?v=n_uNPbdenRs
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
M114 - JPG2 - JPEG DCT, Discrete Cosine Transform (JPEG Pt2)- Computerphile
|
||||||
|
<br>15:11 min, E, YouTube, 22.5.2015
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=Q2aEzeMDHMA
|
||||||
|
|
||||||
|
|
||||||
|
M114 - JPG3 - The Problem with JPEG - Computerphile
|
||||||
|
<br>5:36 min, E, YouTube, 9.6.2015
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=yBX8GFqt6GA
|
||||||
|
|
||||||
|
|
||||||
|
M114 - JPG4 - Zusammenfassung
|
||||||
|
<br>7:30 min, D, YouTube, 23.1.2010
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=GKjycTURXhI
|
||||||
|
|
||||||
|
M114_Software_IrfanView-BildEditor
|
||||||
|
<br>Verweis: https://www.irfanview.com/main_what_is_ger.htm
|
||||||
|
|
||||||
|
M114_Software_OpenShot-VideoEditor
|
||||||
|
<br>Verweis: https://www.openshot.org
|
143
m114/Tag6/README.md
Normal file
@ -0,0 +1,143 @@
|
|||||||
|
## Tag6 - Multimedia / Steganografie / Einfache Verschlüsselung
|
||||||
|
|
||||||
|
Mehr Information Adobe PDF
|
||||||
|
|
||||||
|
05_Multimedia1.pdf
|
||||||
|
Aktionen: 05_Multimedia1.pdf
|
||||||
|
4.2 M
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
|
||||||
|
Einführung Farbe, Foto, Video, RGB, CMYK
|
||||||
|
|
||||||
|
Mehr Information Reine Textdatei
|
||||||
|
|
||||||
|
05_Multimedia1Loseungen.txt
|
||||||
|
Aktionen: 05_Multimedia1Loseungen.txt
|
||||||
|
548 b
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
Mehr Information Archiv (Zip/Winzip)
|
||||||
|
|
||||||
|
05_Testbilder.zip
|
||||||
|
Aktionen: 05_Testbilder.zip
|
||||||
|
314 K
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
|
||||||
|
Testbilder zu den Aufgaben in Multimedia1.pdf
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Die Tonspur
|
||||||
|
Aktionen: Die Tonspur
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:29
|
||||||
|
geändert
|
||||||
|
|
||||||
|
7 min, J. Arnold, 2015 - Eine Audio-Qualitätsbetrachtung
|
||||||
|
Verweis: https://vimeo.com/161034117
|
||||||
|
|
||||||
|
Mehr Information Adobe PDF
|
||||||
|
|
||||||
|
PublicKeyIntro.pdf
|
||||||
|
Aktionen: PublicKeyIntro.pdf
|
||||||
|
2.9 M
|
||||||
|
|
||||||
|
harald.mueller
|
||||||
|
mittel / Standard
|
||||||
|
2021-02-02 23:20
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Steganografie 1
|
||||||
|
Aktionen: Steganografie 1
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:22
|
||||||
|
geändert
|
||||||
|
|
||||||
|
3 min, D, YouTube
|
||||||
|
Verweis: https://www.youtube.com/watch?v=k4W52FCWtvI
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Steganografie 2
|
||||||
|
Aktionen: Steganografie 2
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:22
|
||||||
|
|
||||||
|
|
||||||
|
3 min, D, YouTube
|
||||||
|
Verweis: https://www.youtube.com/watch?v=SBTi1CkmHUQ
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Steganografie 3
|
||||||
|
Aktionen: Steganografie 3
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:23
|
||||||
|
|
||||||
|
|
||||||
|
4 min, D, YouTube
|
||||||
|
Verweis: https://www.youtube.com/watch?v=EzKbsfGhC4w
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Steganografie 4
|
||||||
|
Aktionen: Steganografie 4
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:24
|
||||||
|
|
||||||
|
|
||||||
|
7 min, D, YouTube
|
||||||
|
Verweis: https://www.youtube.com/watch?v=PK3L62Vkux4
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Steganografie 5
|
||||||
|
Aktionen: Steganografie 5
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:26
|
||||||
|
geändert
|
||||||
|
|
||||||
|
7 min, D, YouTube --> zum selber ausprobieren
|
||||||
|
Verweis: https://www.youtube.com/watch?v=XZDvwBQ6hXg
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Steganografie 6
|
||||||
|
Aktionen: Steganografie 6
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:27
|
||||||
|
geändert
|
||||||
|
|
||||||
|
7 min, D, YouTube --> selber ausprobieren
|
||||||
|
Verweis: https://www.youtube.com/watch?v=XcX3JY30tqU
|
||||||
|
|
||||||
|
Mehr Information URL
|
||||||
|
|
||||||
|
Steganografie 7
|
||||||
|
Aktionen: Steganografie 7
|
||||||
|
harald.mueller
|
||||||
|
|
||||||
|
2021-03-26 13:25
|
||||||
|
geändert
|
||||||
|
|
||||||
|
13:13 min, E, YouTube, 2015
|
||||||
|
Verweis: https://www.youtube.com/watch?v=TWEXCYQKyDc
|
10
m114/Tag7/README.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
## Tag7 - Einführung Kryptrografie
|
||||||
|
<br>Klassische symmetrische und asymmetrische Verfahren
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Der Diffie-Hellman-Schlüsselaustausch
|
||||||
|
<br>6:01 min, D, YouTube, 12.6.2016
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=_E0SGl7aN70
|
||||||
|
|
||||||
|
|
41
m114/Tag8/README.md
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
## Tag8 - Asymmetrische und hybride Verschlüsselungsverfahren, Digitale Signatur
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
01 - Cäsar-Verschlüsselung
|
||||||
|
<br>15:42 min, YouTube, D
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=mn-b36ax4PQ
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
02 - Vigenère-Verschlüsselung
|
||||||
|
<br>11:17 min, YouTube, D
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=u6i4kKzeOWA
|
||||||
|
|
||||||
|
|
||||||
|
RSA - Verschlüsselung
|
||||||
|
<br>47 min, 5 Videos in YouTube Playlist, Vorlesung Prof. Chr. Spannagel
|
||||||
|
<br>Verweis: https://www.youtube.com/playlist?list=PLdVk34QLniSBox_E5IFU9S4zSszFE2RsJ&disable_polymer=true
|
||||||
|
|
||||||
|
|
||||||
|
RSA Verschlüsselung mit Schlüsselgenerierung und Modelldurchlauf- it-archiv.net
|
||||||
|
<br>8:50 min, D, YouTube
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=gFd_SZZF63I
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Das RSA-Kryptosystem
|
||||||
|
18:57 min, D, YouTube, Weiz, 2018
|
||||||
|
Verweis: https://www.youtube.com/watch?v=mDRMzBlI3U4
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
99 - Alan Turing - Wer war er eigentlich
|
||||||
|
<br>5:17 min, D, YouTube
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=hGsmzgY_QVo
|
||||||
|
|
||||||
|
|
||||||
|
98 - Wie ein Mathegenie Hitler knackte. ARTE Doku
|
||||||
|
<br>1:13:06, D, YouTube, 2017
|
||||||
|
<br>Verweis: https://www.youtube.com/watch?v=ttRDu4wuVTA
|
||||||
|
|
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 138 KiB After Width: | Height: | Size: 138 KiB |
Before Width: | Height: | Size: 405 KiB After Width: | Height: | Size: 405 KiB |
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.7 MiB After Width: | Height: | Size: 1.7 MiB |
Before Width: | Height: | Size: 339 KiB After Width: | Height: | Size: 339 KiB |
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 152 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 1.6 MiB After Width: | Height: | Size: 1.6 MiB |