[Return] [Catalog]

1 catface 2018-11-15T20:43:25 [ImgOps] [iqdb]
File: background.gif (GIF, 107.63 KB, 717x717)
Tip #1: Limited Color Palettes
Save your images as BMPs or GIFs, and set the amount of colors to whatever suits your image - can be 256 colors, 128 colors, 64 colors... the more dithering you can see, the better!
»
2 Anonymous 2018-11-21T04:25:52 [ImgOps] [iqdb]
File: toucc.gif (GIF, 125.2 KB, 896x860)
I couldn't find the setting to set the number of colours so I just used posterize.
»
3 Anonymous 2018-11-22T08:44:49
That is a cute cat.
»
4 Anonymous 2018-11-22T12:37:38
is that MOOT?
»
5 Anonymous 2018-11-23T03:48:30 [ImgOps] [iqdb]
File: out.jpg (JPEG, 175.84 KB, 800x800)
I wrote some simple programs that call the libjpeg-turbo library to extract and replace the DCT coefficients of JPEG files
https://pastebin.com/w70cvbCu
https://pastebin.com/NU2GkngW
and now I'm looking for interesting things to do with them other than what I did over at https://desuarchive.org/qa/thread/2411811/#2419006

First one, I took a random image and I was going to zero out all the DC DCT coefficients, but I made a mistake and only zeroed the lower byte. Still ended up with an interesting effect, though.

extractdct < source.jpg > source.dct
xxd -p -c 128 source.dct | sed 's/^../00/' | xxd -p -r > out.dct
replacedct out.dct < source.jpg > out.jpg
»
6 Anonymous 2018-11-23T03:50:14 [ImgOps] [iqdb]
File: out2.jpg (JPEG, 170.02 KB, 800x800)
>>5
What I originally intended to do:

extractdct < source.jpg > source.dct
xxd -p -c 128 source.dct | sed 's/^..../0000/' | xxd -p -r > out2.dct
replacedct out2.dct < source.jpg > out2.jpg
»
7 Anonymous 2018-11-23T03:52:01 [ImgOps] [iqdb]
File: out3.jpg (JPEG, 182.52 KB, 800x800)
>>6
With the upper byte zeroed instead:

extractdct < source.jpg > source.dct
xxd -p -c 128 source.dct | sed -r 's/^(..)../\100/' | xxd -p -r > out3.dct
replacedct out3.dct < source.jpg > out3.jpg
»
8 Anonymous 2018-11-23T05:57:18 [ImgOps] [iqdb]
File: out5.jpg (JPEG, 451.05 KB, 800x800)
Found another interesting one from amplifying the DCT values (with limits on the range).

dcttransform.sh '[max(-256,min(256,16*n)) for n in dct]' source.jpg > out5.jpg

using
https://pastebin.com/5KNeYnhz
https://pastebin.com/VPmKzuha
»
9 Anonymous 2018-11-26T20:20:18
>>4
That's kurt cobain
»
10 Anonymous 2018-12-11T01:49:14 [ImgOps] [iqdb]
File: 33.jpg (JPEG, 177.16 KB, 707x1000)
Found another one.
dcttransform.sh '[dct[(3*i)%len(dct)] for i in range(len(dct))]' /tmp/3.jpg > /tmp/33.jpg
»
11 Anonymous 2018-12-11T01:50:18 [ImgOps] [iqdb]
File: b77.jpg (JPEG, 688.7 KB, 1354x942)
dcttransform.sh '[dct[(7*i)%len(dct)] for i in range(len(dct))]' /tmp/b7.jpg > /tmp/b77.jpg
»
12 Anonymous 2018-12-11T16:44:23
>>8
for more convenience I put it at
https://gitgud.io/dcttransform/dcttransform
»
13 Anonymous 2018-12-15T09:08:40 [ImgOps] [iqdb]
File: 1417086942930.gif (GIF, 300.43 KB, 190x190)

キタ━━━(゚∀゚)━━━!!
»
14 Anonymous 2018-12-15T09:11:15 [ImgOps] [iqdb]
File: 1411905224878.jpg (JPEG, 1.64 MB, 1000x1713)

キタ━━━(゚∀゚)━━━!!
»
15 Nolovoto 2018-12-23T21:32:03
I have an idea. Distort an image earthbound style but used weierstrass fractals or blancmange curves instead of sine waves.
»
16 Nolovoto 2018-12-23T21:33:14 [ImgOps] [iqdb]
File: water.jpg (JPEG, 302.48 KB, 1024x576)
All I know how to do is databend
»
17 Nolovoto 2018-12-23T21:34:58 [ImgOps] [iqdb]
File: glitchy 7.jpg (JPEG, 135.29 KB, 935x542)
one time this happened with chaospro
»
18 Anonymous 2019-04-16T05:49:06 [ImgOps] [iqdb]
File: ucm.jpg (JPEG, 2.13 MB, 1500x1488)
Used the JPEG tweaking programs to make pic related which decodes to different images depending on how you view it.

commands used to generate: https://pastebin.com/Zyc3jqBq
»
20 Anonymous 2019-04-17T00:55:40
>>18
that's rad
»
21 Anonymous 2019-04-18T01:53:54 [ImgOps] [iqdb]
File: ulcm.jpg (JPEG, 773.43 KB, 1504x1488)
Increased the number of images.
https://pastebin.com/LX7QgqdW
»
22 Anonymous 2019-04-18T04:44:02
>>21
Cool, I saw these on /qa/. Didn't know you made a script for it

[Return] [Catalog]
Delete Post:
OptionsPassword
Name
Comment
File