-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.php
81 lines (75 loc) · 1.51 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<title>#image Demo</title>
<Style>
body{
margin:0;
padding; 0;
font-family:sans-serif;
-ms-text-size-adjust:100%;
background:#f8f8f8;
color:#34495e;
}
.container{
margin:50px auto;
width:500px;
background:White;
padding: 40px
}
.logo{
text-align: center;
}
.center{
text-align: center;
}
.right{
float:right;
}
.logo{
text-align: center;
}
.line{
height:2px;
margin:10px 0px;
background:#ecf0f1;
}
p{
line-height: 23px;
}
.small{
font-size:11px;
color:#7f8c8d;
}
.small a{
color:#7f8c8d;
}
.bold{
font-weight:bold;
}
.bold a{
color:#2c3e50;
text-decoration: none;
}
</style>
<body>
<div class="container">
<div class="logo"><img src="images/watermark.png" /></div>
<div>
<p >
Hashimage is a simple php image manipulation library to edit images on fly.It takes no time to add instagram
like filters to images and they are visually stunning.
<br><Br>Using hashimage we can resize,crop,rotate,flip or add layers.The core image properties like brightness, contrast, smoothness and even pixels can be altered easily. We can add watermark at any position with variation of size and opacity.
</p>
<p class="center bold">
<a href="demo/index.php">Demos</a>
<a href="docs/documentation.php">Documentation</a>
<a href="https://github.com/packetcode/hashimage">Download</a>
</p>
<div class="line"></div>
<p class="center small">
a <a href="http://packetcode.com">packetcode</a> production <a href="http://twitter.com/shaadomanthra">
@krishnaTeja</a>
</p>
</div>
</div>
</body>
</html>