Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Fake Images Please | 775 | 5 months ago | 2 | isc | Python | |||||
Fakeimg.pl is a little tool that generates images with an URL. Choose the size, the colors, even the text. Oh… and it’s free. | ||||||||||
Kind_tensorflow_tutorial | 7 | 6 years ago | Jupyter Notebook | |||||||
친절한 한글 설명과 함께하는 텐서플로우 튜토리얼입니다! | ||||||||||
Devsungmin.github.io | 1 | 2 years ago | mit | SCSS | ||||||
(2020년 2분기 자료)💻개인 포트폴리오 사이트 |
When designing websites, you may not have the images you need at first. But you already know the sizes and inserting some placeholders can help you better seeing the layout. Don’t waste your time making dummy images for your mockup or wireframe. Fakeimg.pl is a little tool that generates images with an URL. Choose the size, the colors, even the text. It’s free and open-source.
You just have to put your image size after our URL. Only the first parameter is mandatory. There are options too, you can pass a text, or change some colors. Colors must be hexadecimal, the first one is the background color. The text can be passed with the text GET variable. Here are some examples you can look at:
<img src="https://fakeimg.pl/300/">
<img src="https://fakeimg.pl/250x100/">
<img src="https://fakeimg.pl/250x100/ff0000/">
<img src="https://fakeimg.pl/350x200/ff0000/000">
<img src="https://fakeimg.pl/350x200/?text=Hello">
<img src="https://fakeimg.pl/350x200/?text=オラ&font=noto">
<img src="https://fakeimg.pl/350x200/?text=World&font=lobster">
Use them directly in an image tag or a CSS background, or whatever you want to.
There are three bonus fonts you can choose by passing font=lobster
, font=bebas
, or font=museo
in the URL.
Also please note that the font=noto
is available for chinese/japanese/korean texts.
You can manually change the font size by passing in the URL font_size=12
.
Just pass the retina=1
in the URL. Your image will be 2 times bigger.
You can use the font noto
for support of japanese, korean and chinese text.
Colors support transparency (0 - 255) by putting the alpha value after the color itself. Both colors are supported.
<img src="https://fakeimg.pl/350x200/ff0000,128/000">
<img src="https://fakeimg.pl/350x200/ff0000,128/000,10">
Prerequisites:
# Run the image (change the port if you need)
$ docker run -d -p 80:80 rydgel/fakeimg:latest
# Open the browser at http://127.0.0.1:80
Made by Jérôme Mahuet in 2021. Follow @rydgel to stay up-to-date with the project, or if you just want to ask something. Feel free to make pull requests.