I have a script to shrink pictures that stopped working under 10.15.

I don’t know what happening then. Sorry I couldn’t help.

May you run :

on open draggeditems
	--set draggeditems to choose file of type {"public.jpeg"} with multiple selections allowed
	set text1 to my recolle(draggeditems, linefeed)
	repeat with aFile in draggeditems
		set contents of aFile to quoted form of POSIX path of aFile & space
	end repeat
	set text2 to my recolle(draggeditems, linefeed)
	
	display dialog text1 & linefeed & text2
	--do shell script "sips --resampleHeightWidthMax 800 " & draggeditems
end open
#=====

on recolle(l, d)
	local oTIDs, t
	set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d}
	set t to l as text
	set AppleScript's text item delimiters to oTIDs
	return t
end recolle

#=====

and report what you got ?

On my iMac (10.13.6) I got :

SSD 1000:Users::desktop:DSC_0257 - opposite.jpg
SSD 1000:Users:
:desktop:DSC_0257 - rotated.jpg
SSD 1000:Users::desktop:DSC_0257 - upDown.jpg
SSD 1000:Users:
:desktop:DSC_0257.JPG
‘/Users//Desktop/DSC_0257 - opposite.jpg’
'/Users/
/Desktop/DSC_0257 - rotated.jpg’
‘/Users//Desktop/DSC_0257 - upDown.jpg’
'/Users/
/Desktop/DSC_0257.JPG’

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) samedi 23 mai 2020 17:53:39

Yvan (post 34) here is what it reports for a jpeg pic:

origDimensions : 3264, 1836
origResolution : 72.0, 72.0
newDimensions : 800, 450
newResolution : 72.0, 72.0

however the pic went from 1.8 to 2.2 MB. So, it shrunk its size as in dimensions but enlarged the size as in KB.

For a png a similar thing happens. The size (MB) stays the same and it reports:

origDimensions : 1920, 1080
origResolution : 72.0, 72.0
newDimensions : 800, 450
newResolution : 72.0, 72.0

The aim of my original script was to redse KB. So, the 1.8 MB became like 110 KB.

Yvan as to the script in post 36, nothing happens. Well I get a box to click.

OS 10.15 test:Users:e:Desktop:1 copy 5.png
‘/Users/e/Desktop/1 copy 5.png’

So, it did what it was supposed to do, If you look at the script in message 36, the call to SIPS was deliberately disabled.

Now that we know that the needed infos are correctly passed, try the version with the call to SIPS enabled:

on open draggeditems
	--set draggeditems to choose file of type {"public.jpeg"} with multiple selections allowed
	set text1 to my recolle(draggeditems, linefeed)
	repeat with aFile in draggeditems
		set contents of aFile to quoted form of POSIX path of aFile & space
	end repeat
	set text2 to my recolle(draggeditems, linefeed)
	
	display dialog text1 & linefeed & text2
	do shell script "sips --resampleHeightWidthMax 800 " & draggeditems
end open
#=====

on recolle(l, d)
	local oTIDs, t
	set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d}
	set t to l as text
	set AppleScript's text item delimiters to oTIDs
	return t
end recolle

#=====

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) samedi 23 mai 2020 19:08:43

May you send one or two of your pictures to my mail address : <koenigyvan mac com>

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) samedi 23 mai 2020 19:10:30

Same result as before.

send.

Thank you.

Really simple.
Your jpeg is one of the ‘corrupted’ ones which are available since a few months.
When I looked at its contents with an hexadecimal editor I found a large number of null bytes at its end.
These bytes prevent SIPS or Image Events to achieve their job.
I removed these extraneous bytes so, the original file (1754025 bytes) became a 1560661 bytes one.
When I treated it with SIPS I got a 52949 bytes one.

Some days ago I wrote a script designed to clean such ‘corrupted’ files.
Shane Stanley gave me a more efficient one.
Here it is.

Yvan,

Here’s another approach. It’s still a bit on the dirty side, but I see the first file I tried contained FFD900 more than once. The problem is to avoid accidentally running the code on a file that has already been trimmed. There’s probably a more efficient way, but it shouldn’t be too bad:

use AppleScript version "2.5" -- macOS 10.11 or later
use framework "Foundation"
use scripting additions

set theFile to choose file
--search for FFD900
set b64String to "/9kA" -- FFD900 in Base64
set b64Data to current application's NSData's alloc()'s initWithBase64EncodedString:b64String options:0
set theData to current application's NSData's dataWithContentsOfURL:theFile
set dataLen to theData's |length|()
set theRange to theData's rangeOfData:b64Data options:(current application's NSDataSearchBackwards) range:{0, dataLen}
if |length| of theRange = 3 then
	-- make sure only nulls after it by making base64 string of the rest, then looking for other than A or = in it
	set maxRange to current application's NSMaxRange(theRange)
	set endData to theData's subdataWithRange:{maxRange + 1, dataLen - maxRange - 1}
	set endB64 to (endData's base64EncodedStringWithOptions:0)
	set newRange to endB64's rangeOfString:"[^A=]" options:(current application's NSRegularExpressionSearch)
	if |length| of newRange is 0 then
		-- we know it's only nulls
		set eof theFile to ((location of theRange) + 2)
	end if
end if

On my side I encapsulated it in a script which filter Jpegs in every cases in droplet as well as in applet.

use AppleScript version "2.5" -- macOS 10.11 or later
use framework "Foundation"
use scripting additions

on run
	set theFiles to choose file with prompt "Sélectionner un ou plusieurs fichiers jpg" of type {"public.jpeg"} with multiple selections allowed
	repeat with aFile in theFiles
		my removeGarbage(aFile)
	end repeat
end run

on open theFiles -- alas list of drag & dropped items
	tell application "System Events"
		repeat with aFile in theFiles
			if type identifier of aFile is "public.jpeg" then my removeGarbage(aFile)
		end repeat
	end tell
end open

on removeGarbage(theFile)
	-- handler written by Shane Stanley on 2020/04/30
	--search for FFD900
	set b64String to "/9kA" -- FFD900 in Base64
	set b64Data to current application's NSData's alloc()'s initWithBase64EncodedString:b64String options:0
	set theData to current application's NSData's dataWithContentsOfURL:theFile
	set dataLen to theData's |length|()
	set theRange to theData's rangeOfData:b64Data options:(current application's NSDataSearchBackwards) range:{0, dataLen}
	if |length| of theRange = 3 then
		-- make sure only nulls after it by making base64 string of the rest, then looking for other than A or = in it
		set maxRange to current application's NSMaxRange(theRange)
		set endData to theData's subdataWithRange:{maxRange + 1, dataLen - maxRange - 1}
		set endB64 to (endData's base64EncodedStringWithOptions:0)
		set newRange to endB64's rangeOfString:"[^A=]" options:(current application's NSRegularExpressionSearch)
		if |length| of newRange is 0 then
			-- we know it's only nulls
			set eof theFile to ((location of theRange) + 2)
		end if
	end if
end removeGarbage

In an other message, Shane wrote : If you save it from Script Debugger, you will see in the Resources pane that you can restrict drag-and-drop to just jpeg files.

Try it and let all of us know if this time you get the wanted result.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) dimanche 24 mai 2020 10:08:38

PS: not sure that the problem is solved for you. Here, when I apply SIPs on your original file, it’s correctly reduced.

Yvan good morning.

I am not able to make it work. I am now testing under 10.13, like you.

Yes the script shrinks the picture and always to 229MB.

I cannot control the size in any way, I tried numbers from 1 to 50000 and the output size is always the same.

So I started testing.

As you see in the script below I can disable almost of all of it and it still works.


on open draggeditems
	--set draggeditems to choose file of type {"public.jpeg"} with multiple selections allowed
	--set text1 to my recolle(draggeditems, linefeed)
	--repeat with aFile in draggeditems
	--set contents of aFile to quoted form of POSIX path of aFile & space
	--end repeat
	--set text2 to my recolle(draggeditems, linefeed)
	
	-- display dialog text1 & linefeed & text2
	-- do shell script "sips --resampleHeightWidthMax 50000 " & draggeditems
end open
#=====

--on recolle(l, d)
--local oTIDs, t
--set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d}
--set t to l as text
--set AppleScript's text item delimiters to oTIDs
--return t
--end recolle

#=====


This is not possible. So I pasted the clean text in a new one and it does not work.


on open draggeditems    
end open

Now, I am not an expert here, but something is funny. I would guess that there is code that keeps ‘hanging’ in the script. Or?

What do you think and could this be the cause of the challenges I have with the script?

Now my original script:


tell application "Image Events"
    launch
end tell
on open draggeditems
    repeat with currentFile in draggeditems
        tell application "Image Events"
            set openedFile to open (currentFile as alias)
            --Part 3:
            set fileLocation to the location of openedFile
            set fileName to the name of openedFile
            --Part 4:
            scale openedFile to size 800
            save openedFile with icon
            close openedFile
        end tell
        --Part 5:
        tell application "Finder"
            set the name of file fileName of fileLocation to ¬
                (fileName)
        end tell
    end repeat
end open

It still works but I can not influence the size (like in the other proposed script here) anymore. I had 3 scripts, where I had different numbers (here 800) like 700 and 100. This would influence the size. And it still does if I use the originals. But as soon as I copy to a new file or change the number it goes to 54 mb.

I can’t guess what you made wrongly but you did.

Please click the button [Open this Scriplet in your Editor:] which appears below:
and save this script as “resize to 800.app” with absolutely no change !

-- save this one as "resize to 800.app" 
-- I disabled useless instructions

on open draggeditems
	tell application "Image Events" to launch
	repeat with currentFile in draggeditems
		tell application "Image Events"
			set openedFile to open file (currentFile as string)
			--Part 3:
			--set fileLocation to the location of openedFile
			--set fileName to the name of openedFile
			--Part 4:
			scale openedFile to size 800
			save openedFile with icon
			close openedFile
		end tell
		(*
		--Part 5:
        tell application "Finder"
            set the name of file fileName of fileLocation to ¬
                (fileName)
        end tell
		*)
	end repeat
end open

Please click the button [Open this Scriplet in your Editor:] which appears below:
and save this script as “resize to 1200.app” with absolutely no change !

-- save this one as "resize to 1200.app" 
-- I disabled useless instructions

on open draggeditems
	tell application "Image Events" to launch
	repeat with currentFile in draggeditems
		tell application "Image Events"
			set openedFile to open file (currentFile as string)
			--Part 3:
			--set fileLocation to the location of openedFile
			--set fileName to the name of openedFile
			--Part 4:
			scale openedFile to size 1200
			save openedFile with icon
			close openedFile
		end tell
		(*
		--Part 5:
        tell application "Finder"
            set the name of file fileName of fileLocation to ¬
                (fileName)
        end tell
		*)
	end repeat
end open

EDITED FROM HERE

Please click the button [Open this Scriplet in your Editor:] which appears below:
and save this script as “resize to 1600.app” with absolutely no change !

-- save this one as "resize to 1600.app" 
-- I disabled useless instructions

on open draggeditems
	tell application "Image Events" to launch
	repeat with currentFile in draggeditems
		tell application "Image Events"
			set openedFile to open file (currentFile as string)
			--Part 3:
			--set fileLocation to the location of openedFile
			--set fileName to the name of openedFile
			--Part 4:
			scale openedFile to size 1600
			save openedFile with icon
			close openedFile
		end tell
		(*
		--Part 5:
        tell application "Finder"
            set the name of file fileName of fileLocation to ¬
                (fileName)
        end tell
		*)
	end repeat
end open

Please click the button [Open this Scriplet in your Editor:] which appears below:
and save this script as “three sizes.scpt” with absolutely no change !

UNTIL HERE

property mode : 1 -- try with the values 1, 2, 3
-- 1 --> alias
-- 2 --> «class furl»
-- 3 --> POSIX Path
--on open draggeditems

set draggedItems to choose file of type {"public.jpeg"} with multiple selections allowed
tell application "Image Events" to launch

repeat with currentFile in draggedItems
	if mode = 1 then
		set thePicture to currentFile as text
	else if mode = 2 then
		set thePicture to currentFile as «class furl» --> «class furl»
	else if mode = 3 then
		set thePicture to POSIX path of currentFile --> text
	end if
	
	set origSizeXXX to size of (info for currentFile)
	tell application "Image Events"
		if mode = 1 then
			set openedFile to open file thePicture
		else
			set openedFile to open thePicture
		end if
		--set fileLocation to the location of openedFile
		--set fileName to the name of openedFile
		set origDimensions to dimensions of openedFile
		set origResolution to resolution of openedFile
		scale openedFile to size 800
		save openedFile with icon
		set newDimensions to dimensions of openedFile
		set newResolution to resolution of openedFile
		close openedFile
	end tell
	set newSize800 to size of (info for currentFile)
	tell me to display dialog "origSizeXXX : " & origSizeXXX & " bytes" & linefeed & "origDimensions : " & my recolle(origDimensions, ", ") & linefeed & "origResolution : " & my recolle(origResolution, ", ") & linefeed & "newDimensions : " & my recolle(newDimensions, ", ") & linefeed & "newResolution : " & my recolle(newResolution, ", ") & linefeed & "newSize800 : " & newSize800 & " bytes" & linefeed
	
	set origSize800 to size of (info for currentFile)
	tell application "Image Events"
		if mode = 1 then
			set openedFile to open file thePicture
		else
			set openedFile to open thePicture
		end if
		--set fileLocation to the location of openedFile
		--set fileName to the name of openedFile
		set origDimensions to dimensions of openedFile
		set origResolution to resolution of openedFile
		scale openedFile to size 1600
		save openedFile with icon
		set newDimensions to dimensions of openedFile
		set newResolution to resolution of openedFile
		close openedFile
	end tell
	set newSize1600 to size of (info for currentFile)
	tell me to display dialog "origSize800 : " & origSize800 & " bytes" & linefeed & "origDimensions : " & my recolle(origDimensions, ", ") & linefeed & "origResolution : " & my recolle(origResolution, ", ") & linefeed & "newDimensions : " & my recolle(newDimensions, ", ") & linefeed & "newResolution : " & my recolle(newResolution, ", ") & linefeed & "newSize1600 : " & newSize1600 & " bytes" & linefeed
	
	set origSize1600 to size of (info for currentFile)
	tell application "Image Events"
		if mode = 1 then
			set openedFile to open file thePicture
		else
			set openedFile to open thePicture
		end if
		--set fileLocation to the location of openedFile
		--set fileName to the name of openedFile
		set origDimensions to dimensions of openedFile
		set origResolution to resolution of openedFile
		scale openedFile to size 3200
		save openedFile with icon
		set newDimensions to dimensions of openedFile
		set newResolution to resolution of openedFile
		close openedFile
	end tell
	set newSize3200 to size of (info for currentFile)
	tell me to display dialog "origSize1600 : " & origSize1600 & " bytes" & linefeed & "origDimensions : " & my recolle(origDimensions, ", ") & linefeed & "origResolution : " & my recolle(origResolution, ", ") & linefeed & "newDimensions : " & my recolle(newDimensions, ", ") & linefeed & "newResolution : " & my recolle(newResolution, ", ") & linefeed & "newSize3200 : " & newSize3200 & " bytes" & linefeed
end repeat
--end open

#=====
on recolle(l, d)
	local oTIDs, t
	set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d}
	set t to l as text
	set AppleScript's text item delimiters to oTIDs
	return t
end recolle
#=====

It’s a slightly edited version of the one which I sent to your mailbox.

Run it from the Script Editor without any change.
You are supposed to get this log history:


Please don't click the button [Open this Scriplet in your Editor:],
this is not a script but a log history !
tell application "Script Editor"
	choose file of type {"public.jpeg"} with multiple selections allowed
		--> {alias "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"}
end tell
tell application "Image Events"
	launch
end tell
tell current application
	info for alias "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> {name:"2 copy 2.jpg", creation date:date "mercredi 6 mai 2020 à 17:16:56", modification date:date "mercredi 6 mai 2020 à 17:16:56", size:1754025, folder:false, alias:false, package folder:false, visible:true, extension hidden:false, name extension:"jpg", displayed name:"2 copy 2.jpg", default application:alias "SSD 1000:Applications:Preview.app:", kind:"Image JPEG", file type:", file creator:", type identifier:"public.jpeg", locked:false, busy status:false, short version:"", long version:""}
end tell
tell application "Image Events"
	open file "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> image "2 copy 2.jpg"
	get dimensions of image "2 copy 2.jpg"
		--> {3264, 1836}
	get resolution of image "2 copy 2.jpg"
		--> {72.0, 72.0}
	scale image "2 copy 2.jpg" to size 800
	save image "2 copy 2.jpg" with icon
		--> file "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
	get dimensions of image "2 copy 2.jpg"
		--> {800, 450}
	get resolution of image "2 copy 2.jpg"
		--> {72.0, 72.0}
	close image "2 copy 2.jpg"
end tell
tell current application
	info for alias "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> {name:"2 copy 2.jpg", creation date:date "dimanche 24 mai 2020 à 13:46:38", modification date:date "dimanche 24 mai 2020 à 13:46:38", size:52949, folder:false, alias:false, package folder:false, visible:true, extension hidden:false, name extension:"jpg", displayed name:"2 copy 2.jpg", default application:alias "SSD 1000:Applications:Preview.app:", kind:"Image JPEG", file type:", file creator:", type identifier:"public.jpeg", locked:false, busy status:false, short version:"", long version:""}
end tell
tell application "Script Editor"
	display dialog "origSizeXXX : 1754025 bytes
origDimensions : 3264, 1836
origResolution : 72,0, 72,0
newDimensions : 800, 450
newResolution : 72,0, 72,0
newSize800 : 52949 bytes
"
		--> {button returned:"OK"}
end tell
tell current application
	info for alias "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> {name:"2 copy 2.jpg", creation date:date "dimanche 24 mai 2020 à 13:46:38", modification date:date "dimanche 24 mai 2020 à 13:46:38", size:52949, folder:false, alias:false, package folder:false, visible:true, extension hidden:false, name extension:"jpg", displayed name:"2 copy 2.jpg", default application:alias "SSD 1000:Applications:Preview.app:", kind:"Image JPEG", file type:", file creator:", type identifier:"public.jpeg", locked:false, busy status:false, short version:"", long version:""}
end tell
tell application "Image Events"
	open file "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> image "2 copy 2.jpg"
	get dimensions of image "2 copy 2.jpg"
		--> {800, 450}
	get resolution of image "2 copy 2.jpg"
		--> {72.0, 72.0}
	scale image "2 copy 2.jpg" to size 1600
	save image "2 copy 2.jpg" with icon
		--> file "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
	get dimensions of image "2 copy 2.jpg"
		--> {1600, 900}
	get resolution of image "2 copy 2.jpg"
		--> {72.0, 72.0}
	close image "2 copy 2.jpg"
end tell
tell current application
	info for alias "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> {name:"2 copy 2.jpg", creation date:date "dimanche 24 mai 2020 à 13:46:42", modification date:date "dimanche 24 mai 2020 à 13:46:42", size:126642, folder:false, alias:false, package folder:false, visible:true, extension hidden:false, name extension:"jpg", displayed name:"2 copy 2.jpg", default application:alias "SSD 1000:Applications:Preview.app:", kind:"Image JPEG", file type:", file creator:", type identifier:"public.jpeg", locked:false, busy status:false, short version:"", long version:""}
end tell
tell application "Script Editor"
	display dialog "origSize800 : 52949 bytes
origDimensions : 800, 450
origResolution : 72,0, 72,0
newDimensions : 1600, 900
newResolution : 72,0, 72,0
newSize1600 : 126642 bytes
"
		--> {button returned:"OK"}
end tell
tell current application
	info for alias "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> {name:"2 copy 2.jpg", creation date:date "dimanche 24 mai 2020 à 13:46:42", modification date:date "dimanche 24 mai 2020 à 13:46:42", size:126642, folder:false, alias:false, package folder:false, visible:true, extension hidden:false, name extension:"jpg", displayed name:"2 copy 2.jpg", default application:alias "SSD 1000:Applications:Preview.app:", kind:"Image JPEG", file type:", file creator:", type identifier:"public.jpeg", locked:false, busy status:false, short version:"", long version:""}
end tell
tell application "Image Events"
	open file "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> image "2 copy 2.jpg"
	get name of image "2 copy 2.jpg"
		--> "2 copy 2.jpg"
	get dimensions of image "2 copy 2.jpg"
		--> {1600, 900}
	get resolution of image "2 copy 2.jpg"
		--> {72.0, 72.0}
	scale image "2 copy 2.jpg" to size 3200
	save image "2 copy 2.jpg" with icon
		--> file "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
	get dimensions of image "2 copy 2.jpg"
		--> {3200, 1800}
	get resolution of image "2 copy 2.jpg"
		--> {72.0, 72.0}
	close image "2 copy 2.jpg"
end tell
tell current application
	info for alias "SSD 1000:Users:**********:Desktop:2 copy 2.jpg"
		--> {name:"2 copy 2.jpg", creation date:date "dimanche 24 mai 2020 à 13:46:44", modification date:date "dimanche 24 mai 2020 à 13:46:44", size:320141, folder:false, alias:false, package folder:false, visible:true, extension hidden:false, name extension:"jpg", displayed name:"2 copy 2.jpg", default application:alias "SSD 1000:Applications:Preview.app:", kind:"Image JPEG", file type:", file creator:", type identifier:"public.jpeg", locked:false, busy status:false, short version:"", long version:""}
end tell
tell application "Script Editor"
	display dialog "origSize1600 : 126642 bytes
origDimensions : 1600, 900
origResolution : 72,0, 72,0
newDimensions : 3200, 1800
newResolution : 72,0, 72,0
newSize3200 : 320141 bytes
"
		--> {button returned:"OK"}
end tell

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) dimanche 24 mai 2020 14:20:46

The script above does absolutely nothing !
So I don’t understand what means your statement : and it still works.

The script above, which is in fact exactly the same than the first one, does absolutely nothing !
So I don’t understand what means your statement : and it does not work.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) dimanche 24 mai 2020 14:30:28

to post 45

Yvan greetings, me reporting. I saved all 3 of them. 800 and 1200 work if I drop a file on it and give different sizes.

1600 does not work saved as an app if I drop a file on it. It does nothing.

If I however run it, it gives me the change to select a file and gives me 3 boxes.

origSizeXXX : 1754025 bytes
origDimensions : 3264, 1836
origResolution : 72.0, 72.0
newDimensions : 800, 450
newResolution : 72.0, 72.0
newSize800 : 52949 bytes

origSize800 : 52949 bytes
origDimensions : 800, 450
origResolution : 72.0, 72.0
newDimensions : 800, 450
newResolution : 72.0, 72.0
newSize1600 : 126642 bytes

origSize1600 : 126642 bytes
origDimensions : 1600, 900
origResolution : 72.0, 72.0
newDimensions : 3200, 1800
newResolution : 72.0, 72.0
newSize3200 : 320141 bytes

and shrinks it to 320KB.

I suspect we arrived, did we not? I need to test later under 10.15, and will report.

Question, I now run them without repair. I assume there is no need for this?

correct and it still shrunk the picture.

this is what I did. I opened the app with SE, took all the lines out, saved it as the original app and it worked as before. it should not but it did.

do I understand it? no I do not.

a bug? possibly.

My fault,
I edited message #45 to repair my error.

OK testing in 10.15. same jpeg as before.

Without cleaning first. 1.8MB > run on 800 > shows briefly 45kb > ends at 2.2GB > icon stays the same.

With cleaning first. 1.8MB > clean > 1.6MB > run on 800 > shows briefly 45kb > ends at 2.2GB > icon has gotten larger.

So runs clearly happily under 10.13 not under 10.15.

NO, NO and NO.

I can’t guess what you really did but I repeat: I’m sure that the script listed in this message didn’t shrink the picture, it does ABSOLUTELY NOTHING".

The main problem here is that you don’t understand what the instructions are supposed to achieve.

I will try to explain them one by one.

on open draggeditems
Is the entry point used when something is dropped upon the app’s icon

--set draggeditems to choose file of type {"public.jpeg"} with multiple selections allowed

Is a disabled instruction which I enable when I test the script in its applet structure (in such case, on open draggeditems is disabled)

--set text1 to my recolle(draggeditems, linefeed) 

When it’s enabled, this instruction change the list of files dragged on the icon into a block of text like :
SSD 1000:Users::desktop:DSC_0257 - opposite.jpg
SSD 1000:Users:
:desktop:DSC_0257 - rotated.jpg
SSD 1000:Users::desktop:DSC_0257 - upDown.jpg
SSD 1000:Users:
:desktop:DSC_0257.JPG

--repeat with aFile in draggeditems
--set contents of aFile to quoted form of POSIX path of aFile & space
--end repeat

When it’s enabled, this loop replace the list of dropped aliases by a list of quoted POSIX paths
like :
{“/Users//Desktop/DSC_0257 - opposite.jpg", "/Users//Desktop/DSC_0257 - rotated.jpg”, “/Users//Desktop/DSC_0257 - upDown.jpg", "/Users//Desktop/DSC_0257.JPG”}

--set text2 to my recolle(draggeditems, linefeed)

When it’s enabled, this instruction change the list of POSIX Paths into a block of text like :
“‘/Users//Desktop/DSC_0257 - opposite.jpg’
'/Users/
/Desktop/DSC_0257 - rotated.jpg’
‘/Users//Desktop/DSC_0257 - upDown.jpg’
'/Users/
/Desktop/DSC_0257.JPG’”

-- display dialog text1 & linefeed & text2

When it’s enabled, this instruction display the block of text built just before.

-- do shell script "sips --resampleHeightWidthMax 50000 " & draggeditems

When it’s enabled, this instruction apply the command supposed to shrink the files described by the list of quoted POSIX Paths.

end open
This instruction is the the end point of the handler.
In the posted script, all these instructions, except on open draggeditems an end open, are disabled so they do nothing.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) dimanche 24 mai 2020 15:31:37

Which script are you describing now?

I guess that it’s the one entitled “three sizes.scpt”
May you, at last, post what you are asked to do:
I want to see the log history.

I carefully sent you a copy of it showing in huge 24 points size the different descriptions of the file.

With the original file which you sent to me, you were supposed to see three dialogs,
dialog #1
"origSizeXXX : 1754025 bytes
origDimensions : 3264, 1836
origResolution : 72,0, 72,0
newDimensions : 800, 450
newResolution : 72,0, 72,0
newSize800 : 52949 bytes

dialog #2
"origSize800 : 52949 bytes
origDimensions : 800, 450
origResolution : 72,0, 72,0
newDimensions : 1600, 900
newResolution : 72,0, 72,0
newSize1600 : 126642 bytes

step#3
"origSize1600 : 126642 bytes
origDimensions : 1600, 900
origResolution : 72,0, 72,0
newDimensions : 3200, 1800
newResolution : 72,0, 72,0
newSize3200 : 320141 bytes

I don’t understand how you may have missed that because you were urged three times to click the button [OK] in the dialogs displaying the values listed above.

This said, if you save the script below as an application (a droplet)

on open draggeditems
	tell application "Image Events" to launch
	repeat with currentFile in draggeditems
		tell application "Image Events"
			set openedFile to open file (currentFile as string)
			scale openedFile to size 678 --<<<< here we define the wanted greater dimension
			save openedFile with icon
			close openedFile
		end tell
	end repeat
end open

and drag and drop a jpeg file on its icon, you will get a file whose greater dimension is 678 pixels.

If you save the script below as an application (a droplet)

on open draggeditems
	tell application "Image Events" to launch
	repeat with currentFile in draggeditems
		tell application "Image Events"
			set openedFile to open file (currentFile as string)
			scale openedFile to size 800 --<<<< here we define the wanted greater dimension
			save openedFile with icon
			close openedFile
		end tell
	end repeat
end open

and drag and drop a jpeg file on its icon, you will get a file whose greater dimension is 800 pixels.

If you save the script below as an application (a droplet)

on open draggeditems
	tell application "Image Events" to launch
	repeat with currentFile in draggeditems
		tell application "Image Events"
			set openedFile to open file (currentFile as string)
			scale openedFile to size 1200 --<<<< here we define the wanted greater dimension
			save openedFile with icon
			close openedFile
		end tell
	end repeat
end open

and drag and drop a jpeg file on its icon, you will get a file whose greater dimension is 1200 pixels.

Must I continue ?

As I already wrote, don’t edit one to change the wanted size, apply copy from a script, paste in a blank one, edit the size to fit your needs, save it as an application with a new name.

Yvan KOENIG running High Sierra 10.13.6 in French (VALLAURIS, France) dimanche 24 mai 2020 16:00:05

I tested all of these script, did not change anything, copied straight from forum in apple script, running under 10.15. no file change is happening - as in getting smaller.

Script one increases the file by 0.4MB
Script two increases the file by 0.4MB
Script three increases the file by 0.9MB

All scripts increase the icon size.

Yvan. This seems a lost cause but, FWIW, I tested your first script from post 52 with PNG and JPEG files. I tested each file twice–once with “with icon” enabled and once with “with icon” disabled. All of the files were located on my boot drive and all of the files after processing by the script contained a width of 678 pixels.

The file sizes were:

PNG Original - 226 KB
PNG with Icon - 385 KB
PNG without Icon - 56 KB

JPEG Original - 3.9 MB
JPEG with Icon - 3 MB
JPEG without Icon - 89 KB

The increased file size with icons may not be surprising. In a different context Shane explained this as follows:

https://www.macscripter.net/viewtopic.php?pid=198928