Package Details: pdfstudio-bin 2024.0.1-1

Git Clone URL: https://aur.archlinux.org/pdfstudio-bin.git (read-only, click to copy)
Package Base: pdfstudio-bin
Description: Review, annotate, and edit PDF Documents
Upstream URL: https://www.qoppa.com/pdfstudio/
Licenses: custom
Conflicts: pdfstudio
Provides: pdfstudio
Replaces: pdfstudio
Submitter: alerque
Maintainer: alerque (flamusdiu, simonzack)
Last Packager: simonzack
Votes: 36
Popularity: 0.000002
First Submitted: 2020-04-10 22:40 (UTC)
Last Updated: 2024-07-21 13:45 (UTC)

Dependencies (1)

Required by (0)

Sources (3)

Latest Comments

1 2 3 4 5 6 .. 14 Next › Last »

pix0wl commented on 2026-05-25 19:44 (UTC)

@Anonymo

I needed Java 17 plus matching Java UI scaling and PDF Studio rendering scaling. Fractional Java scaling such as 1.5 did not work for me, but 2 did.

sudo pacman -S --needed jre17-openjdk

mkdir -p ~/.local/bin

cat > ~/.local/bin/pdfstudio-qoppa <<'EOF'
#!/usr/bin/env bash
export INSTALL4J_JAVA_HOME=/usr/lib/jvm/java-17-openjdk
export _JAVA_AWT_WM_NONREPARENTING=1
export _JAVA_OPTIONS="${_JAVA_OPTIONS:-} -Dswing.aatext=true -Dawt.useSystemAAFontSettings=on -Dsun.java2d.uiScale=2"
exec /usr/bin/pdfstudio "$@"
EOF

chmod +x ~/.local/bin/pdfstudio-qoppa

Start with:

~/.local/bin/pdfstudio-qoppa

Then in PDF Studio:

File -> Preferences -> Display

Set:

  • Rendering -> Display scale: same factor as Java UI scale, e.g. 2 / 200%
  • Document Resolution: custom value suitable for your display

Java scaling fixes the tiny UI. Matching PDF Studio's internal display scale fixes blurry document rendering.

Anonymo commented on 2025-07-15 16:10 (UTC)

What settings are you guys using to make the interface not so small but at the same time, if I mess with java settings/fonts, it makes it blurry.

simonzack commented on 2025-06-24 10:40 (UTC) (edited on 2025-06-24 16:14 (UTC) by simonzack)

@Twikzer There's in incompatibility between the latest JDK and the bundled version of Java Native Access. Replacing /usr/share/pdfstudio/lib/dj/jna.jar with the latest https://repo1.maven.org/maven2/net/java/dev/jna/jna/5.17.0/jna-5.17.0.jar fixes this.

It seems that Qoppa PDF Studio development now takes place as Xodo PDF Studio. Would it be better to make a separate package for that, as they have different names?

Twikzer commented on 2025-05-14 01:20 (UTC)

it crash when i try to open a dialog to select a file

wolfyrion commented on 2024-05-17 13:20 (UTC)

it has been almost a month and no updates

userfriendly commented on 2023-06-21 18:00 (UTC) (edited on 2023-06-21 18:00 (UTC) by userfriendly)

Update: If you want to run it with the latest JRE, comment out these lines in /usr/bin/pdfstudio:


  # if [ "$ver_major" -gt "19" ]; then
  #   return;
  # fi

Watch the changed 19 instead of 17 in a comment below

gir861 commented on 2023-04-27 08:48 (UTC)

Building pdfstudio-bin... ==> Making package: pdfstudio-bin 2022.2.3-1 (Thu 27 Apr 2023 09:08:58 BST) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found pdfstudio.desktop -> Found pdfstudio.png -> Downloading PDFStudio_v2022_2_3_linux64.deb... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed

0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 330 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 curl: (22) The requested URL returned error: 404 ==> ERROR: Failure while downloading https://download.qoppa.com/pdfstudio/v2022/PDFStudio_v2022_2_3_linux64.deb Aborting... Failed to build pdfstudio-bin

mamauriz commented on 2022-07-02 07:51 (UTC)

OK, now it works .. thanks very much

simonzack commented on 2022-07-01 15:49 (UTC) (edited on 2022-07-01 15:51 (UTC) by simonzack)

@mamauriz If you want to run it with the latest JRE, comment out these lines in /usr/bin/pdfstudio:

  # if [ "$ver_major" -gt "17" ]; then
  #   return;
  # fi