-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinstructions.html
97 lines (94 loc) · 4.4 KB
/
instructions.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="en-us">
<!-- manifest="cache.mf" -->
<head>
<meta name="Description" content="A webassembly version of imagemagick that can crop comics into webtoon or tapas format.">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#ffad04">
<meta name="apple-mobile-web-app-status-bar-style" content="#ffad04">
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-size:100%;
line-height:1.5;
font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
}
h1 {
font-size: 2.747em;
}
h2 {
font-size: 0.874em;
}
h3 {
font-size:1.229em;
}
</style>
<title>Croppy</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123529756-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123529756-1');
</script>
<script type="text/javascript">
var _paq = _paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//stat.croppy.duckdns.org/";
_paq.push(['setTrackerUrl', u+'findphp']);
_paq.push(['setSiteId', '3']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'findjs'; s.parentNode.insertBefore(g,s);
})();
</script>
</head>
<body>
<p>
<H3><a href="index.html">BACK</a></H3>
<div>
<p>
<H3>Purpose</H3>
<ul>
<li>Scales and splits long form comics into Webtoon and Tapas format</li>
<ul>
<li>
<img src="images/croppy_split.jpg" alt="Croppy Split Visualization" title="Split image pic by SimonWL - http://simonwl.com/"> </li>
</ul>
</ul>
<H3>Features</H3>
<ul>
<li>Website works offline. Once visited you do not need internet for this website.</li>
<li>Uses webassembly to run <a href="https://www.imagemagick.org">ImageMagick</a> in your browser.</li>
<li>You can hover over split images to find out where one image ends.</li>
</ul>
<h3>Troubleshooting</h3>
<ul>
<li>Very large files 50MB+ will probably not work, I suggest you use <a href="https://forums.tapas.io/t/slicing-images-in-clip-studio-paint/21731">ImageMagick not in your browser</a></li>
<li>Use a browser with high webassembly compatibility like Chrome or Firefox.</li>
<li>Report issues at <a href="https://forums.tapas.io/t/free-image-slicer/24139">https://forums.tapas.io/t/free-image-slicer/24139</a>, mention version 1_3</li>
</ul>
<h3>Manual links</h3>
<p>Since croppy uses imagemagick, here are some links to simliar imagemagick commands that croppy uses. Croppy does a few extra checks and will scale down your picture if its too big. However these links may be useful if you wish to tweak croppy settings</p>
<ul>
<li><a href="https://bit.ly/croppy-resize">https://bit.ly/croppy-resize</a> Size a picture to 800 width. Since this is only a resize it may succeed if a full croppy action fails. You will have to feed the output of this link into croppy.</li>
<li><a href="https://bit.ly/wasm-imagemagick-webtoon">https://bit.ly/wasm-imagemagick-webtoon</a> Resize for webtoons using jpeg</li>
<li><a href="https://bit.ly/wasm-imagemagick-tapas">https://bit.ly/wasm-imagemagick-tapas</a> Resize for tapas using png</li>
<li><a href="https://bit.ly/wasm-imagemagick-webcomicsapp">https://bit.ly/wasm-imagemagick-webcomicsapp</a> Resize for webcomicsapp using jpeg</li>
</ul>
<h3>Old Croppy</h3>
<ul>
<li>For a limited time you can still visit the old croppy at
<a href="https://old.croppy.duckdns.org">https://old.croppy.duckdns.org</a>
</li>
</ul>
</p>
</div>
</p>
</body>
</html>