Skip to content

Latest commit

 

History

History
76 lines (52 loc) · 2.48 KB

README.md

File metadata and controls

76 lines (52 loc) · 2.48 KB

IMGMSTR

A simple URL to handle any image for your app

Overview

  • Rotate
  • Resizes
  • Blur
  • Flip
  • Watermark

Getting Started

Resizes Try It.

https://imgmstr.vercel.app/?url=IMG_URL&w=IMG_SIZE

Flip Try It.

https://imgmstr.vercel.app/?url=IMG_URL&flip=true

Rotate Try It.

https://imgmstr.vercel.app/?url=IMG_URL&rotate=ANGLE

Blur Try It.

https://imgmstr.vercel.app/?url=IMG_URL&blur=BLUR_LEVEL

Watermark Try It.

https://imgmstr.vercel.app/?url=IMG_URL&wm_text=WATERMARK TEXT&wm_text_color=HEXACOLOR (optional)&wm_text_size=PIXEL (optional)

Using with html Try It.

<!DOCTYPE html>
<html>
<head>
<title>Image Master</title>
</head>
<body>

<h2>Resizes </h2>
<img src="https://imgmstr.vercel.app/?url=https://cdnb.artstation.com/p/assets/images/images/024/538/889/large/pixel-jeff-rog-demo1.jpg&w=750"/>

<h2>Blur </h2>
<img src="https://imgmstr.vercel.app/?url=https://cdnb.artstation.com/p/assets/images/images/024/538/889/large/pixel-jeff-rog-demo1.jpg&w=750&blur=5"/>
<h2>Flip  </h2>
<img src="https://imgmstr.vercel.app/?url=https://cdnb.artstation.com/p/assets/images/images/024/538/889/large/pixel-jeff-rog-demo1.jpg&w=750&flip=true"/>
<h2>Rotate  </h2>
<img src="https://imgmstr.vercel.app/?url=https://cdnb.artstation.com/p/assets/images/images/024/538/889/large/pixel-jeff-rog-demo1.jpg&w=750&rotate=180"/>
<h2>Watermark  </h2>
<img src="https://imgmstr.vercel.app/?url=https://cdnb.artstation.com/p/assets/images/images/024/538/889/large/pixel-jeff-rog-demo1.jpg&w=750&wm_text=By IMAGE MASTER&wm_text_color=ffffff"/>

</body>
</html>

License

Released under the MIT License