diff --git a/app/Http/Controllers/Pictureproxy.php b/app/Http/Controllers/Pictureproxy.php
new file mode 100644
index 0000000000000000000000000000000000000000..efcea2918e4dcd3a2f12cf2d2d6a71aae8591988
--- /dev/null
+++ b/app/Http/Controllers/Pictureproxy.php
@@ -0,0 +1,37 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Http\Controllers\Controller;
+use Illuminate\Http\Request;
+#use App\MetaGer\Forwarder;
+#use App\MetaGer\Results;
+#use App\MetaGer\Search;
+use App;
+use App\MetaGer;
+use Response;
+
+
+class Pictureproxy extends Controller
+{
+    function get(Request $request) {
+        if( $request->has('url') )
+        {
+            $file = file_get_contents($request->input('url'));
+            $responseCode = explode(" ", $http_response_header[0])[1];
+            $contentType = "";
+            foreach($http_response_header as $header)
+            {
+                if( strpos($header, "Content-Type:") === 0)
+                {
+                    $tmp = explode(": ", $header);
+                    $contentType = $tmp[1];
+                }
+            }
+            $response = Response::make($file, $responseCode);
+            $response->header('Content-Type', $contentType);
+            return $response;
+        }
+    } 
+
+}
\ No newline at end of file
diff --git a/app/Http/routes.php b/app/Http/routes.php
index 68ee0bb09d5a75e335ad2502b0e2dad4930c5e5a..cb96a5c7e258c44b2b4be03a722ae4fa04733336 100644
--- a/app/Http/routes.php
+++ b/app/Http/routes.php
@@ -97,6 +97,7 @@
 
         
         Route::get('meta/meta.ger3', 'MetaGerSearch@search');
+        Route::get('meta/picture', 'Pictureproxy@get');
 
         Route::get('qt', 'MetaGerSearch@quicktips');
         Route::get('tips', 'MetaGerSearch@tips');
diff --git a/app/MetaGer.php b/app/MetaGer.php
index db6664aca5a8e0f9f2684c85af234b176255ff97..5fb13289cc84fe5483a679cf5efb8555d82b6323 100644
--- a/app/MetaGer.php
+++ b/app/MetaGer.php
@@ -716,4 +716,11 @@ class MetaGer
         else
             return null;
     }
+    public function getImageProxyLink($link)
+    {
+        $requestData = [];
+        $requestData["url"] = $link;
+        $link = action('Pictureproxy@get', $requestData);
+        return $link;
+    }
 }
\ No newline at end of file
diff --git a/resources/views/metager3bilder.blade.php b/resources/views/metager3bilder.blade.php
index d9cc2295b1fa413a92e0a8473a2e2c6ea9889ef3..d5f267f77547df5a3b451f4fbcef62fc60795971 100644
--- a/resources/views/metager3bilder.blade.php
+++ b/resources/views/metager3bilder.blade.php
@@ -7,7 +7,7 @@
 	<div class="item">
 		<div class="img">
 			<a href="{{ $result->link }}" target="{{ $metager->getTab() }}">
-			<img src="{{ $result->image }}" width="150px" alt="Bild nicht gefunden"/>
+			<img src="{{ $metager->getImageProxyLink($result->image) }}" width="150px" alt="Bild nicht gefunden"/>
 			</a>
 		</div>
 	</div>