Jump to content

Recommended Posts

Posted
  On 5/9/2015 at 1:03 PM, wakillon said:

<snip>

Hope you like it ! ;)

 

​I like it !

Thanks for sharing

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

Posted (edited)

I like it, too!  :thumbsup:

 

My suggestions

  1. larger preview size of both picture controls
  2. source image info
  3. real time show of the slider values when moving the slider incl. reset option for each slider instead of whole settings
  4. option to scale the original image when original bitmap is too large
  5. option for colorized char when saving as html
  6. create ASCII animation using GIF images

 

Edited by UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Posted

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Regading the About intro - it looks very nice, great effect but the window is too small. If you could double the width it would look much better.

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Posted (edited)

Love it! Brings back memories of the dot matrix printer era (for those of you too young to remember, this was just after the dinosaurs were wiped out)....

Edited by RTFC
Posted
  On 5/9/2015 at 10:42 PM, UEZ said:

Regading the About intro - it looks very nice, great effect but the window is too small. If you could double the width it would look much better.

​I agree with you

The problem is GDI is too slow.

With a higher size, text move will be jerky !

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Posted
  On 5/10/2015 at 7:37 AM, RTFC said:

Love it! Brings back memories of the dot matrix printer era (for those of you too young to remember, this was just after the dinosaurs were wiped out)....

​Thanks, but i'm not so old ! :P

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Posted
  On 5/10/2015 at 8:03 AM, RTFC said:

I'm glad to hear it.^_^

(Consider yourself lucky that you don't get flashbacks to the days when CPUs were still steam-powered.)

​must I conclude that you are a venerable ancestor ? :lmao:

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Posted

:lol: Well, let me put it this way: I'm never happier than when I'm peeling a banana with my toes. If you feel the same way, we may be distant cousins in evolutionary terms. :D

And apologies for going off-topic. I'll go play some more with your script now...

Posted

To set  a ESC hotkey isn't good because when I press the ESC key to close another app then this app also closes.

Suggestion:

HotKeySet('{ESC}', 'Hotkey')

Func Hotkey()
    If WinActive($hGui) Then _Exit
EndFunc

 

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

  • Moderators
Posted

UEZ & wakillon,

  Quote

To set  a ESC hotkey isn't good because when I press the ESC key to close another app then this app also closes

That is why GUISetAccelerators was added to the language.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

wakillon, is there any special reason why you have this line of code:

$iColor = '0x' & Hex ( DllStructGetData ( $tPixel, 1, $iRowOffset + $iX ), 6 )

...written like that? Why wouldn't that be simply:

$iColor = DllStructGetData ( $tPixel, 1, $iRowOffset + $iX )

I've seen others doing that too. I have no clue why.

Btw, the other day when I saw you posted this and how you convert the image, I tried to do the same thing with video to see if I could make fluent ASCII art output out of it. If you are interested see the result at https://trancexx.tk/websockets/ (click "Play").
It's available only when I'm on my comp (personal server) and I use websocket to play animation.

Thanks for sharing.

♡♡♡

.

eMyvnE

Posted
  On 5/11/2015 at 11:31 AM, UEZ said:

To set  a ESC hotkey isn't good because when I press the ESC key to close another app then this app also closes.

Suggestion:

expandcollapsepopup
HotKeySet('{ESC}', 'Hotkey')

Func Hotkey()
    If WinActive($hGui) Then _Exit
EndFunc

 

​Yes you are right, it will be changed in the next update.

Thanks.

 

  On 5/11/2015 at 8:00 PM, Jon said:

Ha. Love it :) 

Glad you like it,

Et Mille merci d'avoir créé AutoIt !

 

  On 5/11/2015 at 8:24 PM, Melba23 said:

UEZ & wakillon,

That is why GUISetAccelerators was added to the language.

M23

​Happy to read you Melba !

Thanks.

 

  On 5/12/2015 at 6:55 AM, Lakes said:

The first ASCII "Art" :)

​Thanks.

 

  On 5/12/2015 at 7:29 AM, trancexx said:

wakillon, is there any special reason why you have this line of code:

expandcollapsepopup
$iColor = '0x' & Hex ( DllStructGetData ( $tPixel, 1, $iRowOffset + $iX ), 6 )

...written like that? Why wouldn't that be simply:

expandcollapsepopup
$iColor = DllStructGetData ( $tPixel, 1, $iRowOffset + $iX )

I've seen others doing that too. I have no clue why.

Btw, the other day when I saw you posted this and how you convert the image, I tried to do the same thing with video to see if I could make fluent ASCII art output out of it. If you are interested see the result at https://trancexx.tk/websockets/ (click "Play").
It's available only when I'm on my comp (personal server) and I use websocket to play animation.

Thanks for sharing.

​You are right, no need to convert data in hex format.

I have take a look to your AscII Art Video and recognized parts of "Le Cinquième Élément" of Luc Besson.

Do you used some batch converter ?

For sure it would take more time, but may be if you convert image by image (with each his own appropriate settings), quality will be improved.

Nice try ! 

A quand la sortie en salle ? ;)

 

AutoIt 3.3.14.2 X86 - SciTE 3.6.0WIN 8.1 X64 - Other Example Scripts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...