WineHQ

Adobe Photoshop

Version 3.0 of Photoshop
supported tabbed palettes and layers for th­e first time.

Application Details:

Version: 3.0
License: Retail
URL: http://www.adobe.com/products/...
Votes: Marked as obsolete
Latest Rating: Garbage
Latest Wine Version Tested: 1.1.40

Maintainers: About Maintainership

Link Wine Wiki

Test Results

Old test results
The test results for this version are very old, and as such they may not represent the current state of Wine. Please consider submitting a new test report.
Selected Test Results

What works

Installer.

What does not

Application reports an out of memory error and exits.

Workarounds

What was not tested

Uninstaller.

Hardware tested

Graphics:

  • GPU:
  • Driver:

Additional Comments

Wine's source can be hacked to let PS3 run.

selected in Test Results table below
Operating systemTest dateWine versionInstalls?Runs?Used
Workaround?
RatingSubmitter
CurrentUbuntu 8.10 "Intrepid" i386 (+ variants like Kubuntu)Mar 13 20101.1.40Yes No NoGarbageKen Sharp 
ShowDebian GNU/Linux 4.x "Etch"Mar 01 20070.9.31.Yes No NoGarbagean anonymous user 

Known Bugs

Bug # Description Status Resolution Other apps affected

Show all bugs

HowTo / Notes

WARNING

Photoshop 3 may not run on modern PCs with large amounts of RAM (typically >2048MB).

This is a Photoshop bug, not a Wine bug.  The same behaviour is apparent in Windows.

HOWTO

PS3 reports an "out of memory" message on computers with large amounts of RAM.  This is not a Wine bug, the same occurs under Windows.

However, you can hack Wine to allow PS3 to run.  The precise hack you want to use will vary depending on your system configuration, but the following patch is an example:

diff --git a/dlls/kernel32/heap.c b/dlls/kernel32/heap.c
index ead0778..7084e85 100644
--- a/dlls/kernel32/heap.c
+++ b/dlls/kernel32/heap.c
@@ -1359,7 +1359,7 @@ VOID WINAPI GlobalMemoryStatus( LPMEMORYSTATUS lpBuffer )

/* work around for broken photoshop 4 installer */
if ( lpBuffer->dwAvailPhys + lpBuffer->dwAvailPageFile >= 2U*1024*1024*1024)
- lpBuffer->dwAvailPageFile = 2U*1024*1024*1024 - lpBuffer->dwAvailPhys - 1;
+ lpBuffer->dwAvailPageFile = 2U*1024*1024 - lpBuffer->dwAvailPhys - 1;

/* limit page file size for really old binaries */
if (nt->OptionalHeader.MajorSubsystemVersion < 4)

Note: This patch affects memory allocation for ALL Wine applications.  Make sure you understand what you are doing.

Do NOT submit test results for hacked versions of Wine.

As this is not a bug, it will never be fixed.  Unless a third-party tool can be used to circumvent the issue, no further test results are needed and will probably be rejected.

Comments

The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.

I know why this has been rated Garbage.
by Conor Duey on Friday August 17th 2018, 20:30
This is a Win16 application, for windows 3.X. Win16 apps can't even run on 64-bit Windows operating systems. Wine is best at running Win32 programs.

Just use DOSBox. You have to setup Windows 3.X in DOSBox but that's easy. DOSBox can easily run Win16 applications.
Back