topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 5:41 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Release: Arti (Aspect Ratio Tool for Images)  (Read 41095 times)

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Release: Arti (Aspect Ratio Tool for Images)
« on: February 09, 2015, 11:56 PM »
TitleArti (Aspect Ratio Tool for Images)
Description Small application that lists aspect ratios for images. Exact ratios are listed in addition to a nearest match ratio based on a configurable preset list.
Supported OSWindows 7.  Probably works, but not tested, on Windows XP/Vista/8/10
Website:http://skwire.dcmembers.com/fp/?page=arti
HistoryChangelog
DownloadArti.zip
Screenshotmain.png

Introduction
There really isn't much more to be said than the description above.  This app was written on request from a photographer and its main focus is to quickly view the aspect ratio of images loaded into its interface.  There are columns for exact ratio (determined by straight math) and nearest preset match which can help to see the nearest aspect ratio for files that aren't pixel perfect.  The software comes preloaded with a large list of aspect ratios but this is entirely configurable.  Of course, the more aspect ratios, the more accurate the nearest preset match is going to be.

Features
  • Load images via the menu, toolbar, or simply by dragging and dropping files or folders.
  • Standard listview interface (column widths and order are saved)
  • Export to CSV function
  • Always on top button

Installation
Download the zip file and extract its contents into a new folder.  Run Arti.exe to start the application.  Add some images and behold.   :P

tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #1 on: February 10, 2015, 03:42 AM »
Interesting :up:

and on the off-chance that you're not sure of your monitor's ratio,
you can use brahman's Screen Calculator: Monitor, Mobile & Notebook PPI and Screen Size Spreadsheet.
Tom

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #2 on: February 10, 2015, 04:22 AM »
Very nice  :up:

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #3 on: February 10, 2015, 08:40 AM »

tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #4 on: February 10, 2015, 09:39 AM »
In case you are wondering, the formula to calculate the new height of an image based on the existing aspect ratio is height / width * new width.
hmm, I dont understand what they say at the end of the ghacks article ^


I think this below is fairly obvious - and doing something different to the above (?).
If I want to, say, crop one side of the image to make it fit the nearest ratio, using one of the examples from the OP:
-
Width: 3,000 [A]    Height: 1993
-
to crop the height (to get 3:2 ratio), I'd divide B by 2; then multiply by 3 to get the correct pixel height (new value for A).
1993/2 = 996.5
996.5*3 = 2989.5 (new height/new value for A)
Tom

mouser

  • First Author
  • Administrator
  • Joined in 2005
  • *****
  • Posts: 40,896
    • View Profile
    • Mouser's Software Zone on DonationCoder.com
    • Read more about this member.
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #5 on: February 10, 2015, 10:19 AM »
The instruction:
In case you are wondering, the formula to calculate the new height of an image based on the existing aspect ratio is height / width * new width.

Is valid.

We can see this (and other related formulas) with some algebra:

For a given height (h) and width (w), we might express the aspect ratio as h/w.

Now imagine we want to construct a new image of height (h2) and width (w2).

If we want these two images to have the same aspect ratio, we can express this by saying that:
h2/w2 = h/w

we can do some simple algebra of multiplying both sides by same values to yield new expressions:
h2 = (h/w)*w2
or
w2 = (w/h)*h2


tomos

  • Charter Member
  • Joined in 2006
  • ***
  • Posts: 11,959
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #6 on: February 10, 2015, 11:50 AM »
thanks mouser -
wasn't sure what it was for, understand now :up:
Tom

ScreenManiac

  • Supporting Member
  • Joined in 2014
  • **
  • Posts: 109
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #7 on: February 18, 2015, 05:22 AM »
Nice tool.  :up:
It were nice to have thumbnails, but that's probably not easy to implement.
What would help also, however, were a bigger font size (optional).

Any way to pass a directory to it via command line? Maybe even with a filter-parameter to show image files only?

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #8 on: February 18, 2015, 12:39 PM »
Nice tool.  :up:

Thank you.

It were nice to have thumbnails, but that's probably not easy to implement.

I thought about this when I was writing it and maybe a second window that would display the image would work.

What would help also, however, were a bigger font size (optional).

Added in the latest version.

Any way to pass a directory to it via command line? Maybe even with a filter-parameter to show image files only?

Basic commandline handling has been added as well.  The app should already restrict files to only the following extensions: jpg, jpeg, bmp, gif, png, tiff, & ico


Website | Download
v1.0.2 - 2015-02-18
    + Added customisable list font.  (Thanks, ScreenManiac)
    + Added basic commandline handling for file and folders.  (Thanks, ScreenManiac)
    + Added "Create SendTo menu shortcut" option in the Options tab.




ScreenManiac

  • Supporting Member
  • Joined in 2014
  • **
  • Posts: 109
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #9 on: February 19, 2015, 02:42 AM »
Thank you. Now it works like a charm, custom font, passing files or folders, auto-filtered  :Thmbsup:   :)
I really appreciate it. Not to mention your quick response and speedy implementation.  8)

One more nice-to-have were a STOP button to stop the scanning of large subfolders. Or even better, an option to not scan subfolders at all. Passing a folder with many subs slows down Arti considerably ATM.
« Last Edit: February 19, 2015, 02:52 AM by ScreenManiac »

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #10 on: February 20, 2015, 06:59 PM »
Website | Download
v1.0.3 - 2015-02-20
    + While a scan is in progress, the menu bar will reduce to a single Cancel
      menu with a Cancel option.  You can also cancel by pressing the Escape key
      while a scan is in progress.  (Thanks, ScreenManiac)
    + Added an option to enable/disable recursive scanning.  (Thanks, ScreenManiac)

ScreenManiac

  • Supporting Member
  • Joined in 2014
  • **
  • Posts: 109
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #11 on: February 21, 2015, 02:14 AM »
GREAT.  :)  and thank you very much.
Works flawless. It keeps the already scanned entries upon Cancel, it remembers the recursive option -  :Thmbsup:

Sebagrin

  • Participant
  • Joined in 2018
  • *
  • default avatar
  • Posts: 3
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #12 on: October 02, 2018, 05:15 PM »
Great software!! Kudos!!

I have a folder with 12,000 pictures.. when I run Arti it does a great job for 1,200 pictures aprox and then it crashes   :o

Is there any way to make it work for more pictures?

Thanks a lot!

Seba

KodeZwerg

  • Honorary Member
  • Joined in 2018
  • **
  • Posts: 718
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #13 on: October 02, 2018, 05:40 PM »
could you provide some more information, ie: screenshot of error, what where you doing when i occur, os version etc, as more info you give, as faster developer can react.

regards,

KodeZwerg.

welcome to forum!

Sebagrin

  • Participant
  • Joined in 2018
  • *
  • default avatar
  • Posts: 3
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #14 on: October 03, 2018, 02:04 PM »
ARti v1.0.3 build1

I'm using windows 10

There's a screenshot attached

can you help me?

Thank you!  :Thmbsup:

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #15 on: October 04, 2018, 02:06 PM »
I have a folder with 12,000 pictures.. when I run Arti it does a great job for 1,200 pictures aprox and then it crashes   

Is there any way to make it work for more pictures?

There's no image number limit in ARTI.  I've tested it with several thousand images, and it seems to work fine for me.  Here's a screenshot:

2018-10-04_140422.pngRelease: Arti (Aspect Ratio Tool for Images)

Now, that said, can you tell if it's crashing on the same image every time?  If you can't, can you experiment a bit with smaller groups of images and try to narrow down if it's crashing on a particular image?

Sebagrin

  • Participant
  • Joined in 2018
  • *
  • default avatar
  • Posts: 3
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #16 on: October 04, 2018, 08:09 PM »
Yes it seems to be always crashing in the same image.. I’ll try to check that!  :Thmbsup:

Curt

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 7,566
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #17 on: October 09, 2018, 11:52 AM »
The problem could of course be the filenames. I wonder if Arti has been "Unicoded"? It didn't work in my setup with merely twenty jpg pictures.

« Last Edit: October 10, 2018, 08:37 AM by Curt, Reason: 20 »

Curt

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 7,566
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #18 on: October 12, 2018, 03:41 PM »
deleted. Sorry, I really thought I were elsewhere...
« Last Edit: April 09, 2019, 10:34 AM by Curt »

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #19 on: October 12, 2018, 04:24 PM »
The problem could of course be the filenames. I wonder if Arti has been "Unicoded"?

Arti is fully Unicode capable:

2018-10-12_161639.pngRelease: Arti (Aspect Ratio Tool for Images)

It didn't work in my setup with merely twenty jpg pictures.

Are those images generic enough that you could send them to me so I can test with them?

Curt

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 7,566
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #20 on: October 12, 2018, 05:19 PM »
My comment was about different subjects, but I didn't bother explain. The file names were all numbers, so I knew that wasn't the problem in my case. I also knew that no picture of mine ever came from Bing, so even though I have no idea why Bing potential could be a problem, I didn't try to understand that problem. The actual twenty pictures here are standard jpg pics from He Qi's site:


I have no words for how stupid this "attach" -system can make me feel. Where is my container?


skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #21 on: October 12, 2018, 05:53 PM »
The actual twenty pictures here are standard jpg pics from He Qi's site:

I download all 84 images from that site and had no problems loading them into Arti  :huh: :

2018-10-12_175209.pngRelease: Arti (Aspect Ratio Tool for Images)

Curt

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 7,566
    • View Profile
    • Donate to Member
Re: Release: Arti (Aspect Ratio Tool for Images)
« Reply #22 on: October 13, 2018, 02:47 PM »
^weird. Something is rotten in the Kingdom of Denmark  :o