All Projects → ziggi → Zimg Host

ziggi / Zimg Host

Licence: mit
Simple image hosting service

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Zimg Host

Gimage
A PHP library for easy image handling. 🖼
Stars: ✭ 148 (+138.71%)
Mutual labels:  image, gd
Image
Manipulate images with an expressive API
Stars: ✭ 781 (+1159.68%)
Mutual labels:  image, gd
Image
PHP Image Manipulation
Stars: ✭ 12,298 (+19735.48%)
Mutual labels:  image, gd
Watimage
🖼 PHP image manipulation class
Stars: ✭ 25 (-59.68%)
Mutual labels:  image, gd
Imagecow
PHP library to manipulate and generate responsive images
Stars: ✭ 234 (+277.42%)
Mutual labels:  image, gd
Image
Joomla Framework Image Package
Stars: ✭ 9 (-85.48%)
Mutual labels:  image, gd
Vue Picture Cut
Image clipping tool based on Vue and Typescript. Feature:Scale, flip, rotate, edge check, rectangle clip, ellipse clip. 基于vue和typescript的图片剪裁工具。功能:缩放、翻折、旋转、边缘校验、矩形剪裁、任意(椭)圆剪裁
Stars: ✭ 49 (-20.97%)
Mutual labels:  image
Silicompressor
A powerful, flexible and easy to use Video and Image compression library for Android.
Stars: ✭ 1,081 (+1643.55%)
Mutual labels:  image
Imagine Svg
Contao Imagine SVG Library
Stars: ✭ 48 (-22.58%)
Mutual labels:  image
Fuzzydetection
图片择优(选择最清楚的图片) 没有使用第三方库
Stars: ✭ 48 (-22.58%)
Mutual labels:  image
Imageselector
图片选择器, 支持多图选择和图片预览
Stars: ✭ 62 (+0%)
Mutual labels:  image
Miniflix
Miniflix - A smaller version of Netflix powered by Cloudinary
Stars: ✭ 58 (-6.45%)
Mutual labels:  image
Simpleparallax.js
Simple and tiny JavaScript library that adds parallax animations on any images
Stars: ✭ 1,075 (+1633.87%)
Mutual labels:  image
Webthings
A collection of all things web, because my memory sucks and so does yours.
Stars: ✭ 50 (-19.35%)
Mutual labels:  hosting
Hexa
Hexa: The ultimate companion for Azure. Setup and deploy in seconds
Stars: ✭ 56 (-9.68%)
Mutual labels:  hosting
Image Sequence Streaming
Realtime, non-linear animation playback for interactive pieces.
Stars: ✭ 48 (-22.58%)
Mutual labels:  image
Mrthumb
【拇指先生】 a simple easy video thumbnail provider,顺滑的获取视频缩略图,支持本地和网络视频,有问题大胆提Issues
Stars: ✭ 60 (-3.23%)
Mutual labels:  image
Jsoupsample
jsoupSample
Stars: ✭ 48 (-22.58%)
Mutual labels:  image
Imageviewer.swift
An easy to use Image Viewer that is inspired by Facebook
Stars: ✭ 1,071 (+1627.42%)
Mutual labels:  image
React Blur Image Loader
Blurred progressive image loader for React
Stars: ✭ 57 (-8.06%)
Mutual labels:  image

zimg-host

Simple image hosting service

Demo

http://img.ziggi.org/

Backend requirement

  • PHP >= 5.3.0
  • GD extension

Installation

  • Copy files into your website directory (subdirectories are supported)
  • Change config.php if you need
  • Make sure that the file/ directory is writable by web server

Config for nginx

If you are using nginx instead Apache, this configuration example can be useful to you:

location / {
	try_files $uri $uri/ /index.php?$args;
}

Usage in CURL

You can upload images using CURL.

Some examples:

curl -F files[][email protected] http://img.ziggi.org/api/upload.php
curl -F files[][email protected] -F files[][email protected] http://img.ziggi.org/api/upload.php
curl -F urls[]=http://i.imgur.com/VCcArdF.jpg?1 http://img.ziggi.org/api/upload.php
curl -F urls[]=http://i.imgur.com/VCcArdF.jpg?1 -F urls[]=http://i.imgur.com/hdsdwsS.jpg?1 http://img.ziggi.org/api/upload.php

Password protect upload:

curl -u whatever:YOUR_PASSWORD -F urls[]=http://i.imgur.com/VCcArdF.jpg?1 http://img.ziggi.org/api/upload.php

example of result string (formatted for readability):

[
	{
		"name":"image1.jpg",
		"type":2,
		"size":
		{
			"width":420,
			"height":336,
			"filesize":26834
		},
		"error":
		{
			"upload":0,
			"type":0,
			"size":0
		},
		"url":"mijhmyhS.jpg"
	},
	{
		"name":"image2.jpg",
		"type":2,
		"size":
		{
			"width":703,
			"height":442,
			"filesize":88604
		},
		"error":
		{
			"upload":0,
			"type":0,
			"size":0
		},
		"url":"GyDIPAGC.jpg"
	}
]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].