linuxmint / cinnamon-spices-actions

Actions for the Cinnamon desktop
http://cinnamon-spices.linuxmint.com/
16 stars 49 forks source link

Create PDF form images. #372

Open brakdag opened 1 month ago

brakdag commented 1 month ago

Action name and maintainer

image-compressor@schorschii @schorschii

What would you like to see?

Title:
Create PDF function for Nemo with ImageMagick dependency

Description:
I've developed a Nemo action that facilitates the creation of PDF files from images. This action relies on ImageMagick's convert tool for the conversion process.

Instructions:

  1. Prerequisites: Ensure ImageMagick is installed on your system.
  2. Installation: Add the provided code snippet to your Nemo actions configuration.
  3. Usage: Select multiple images in Nemo, right-click, and choose the "Crear pdf" option from the context menu.

Code:


[Nemo Action]
Name[es]=Crear PDF
Name[en]=Create PDF
Name[de]=PDF erstellen
Name[fr]=Créer un PDF
Name[it]=Crea PDF
Name[pt]=Criar PDF
Name[ru]=Создать PDF
Name[zh]=创建PDF
Name[ja]=PDFを作成する
Name[ar]=إنشاء ملف PDF
Comment[es]=Crea un pdf con varias imágenes.
Comment[en]=Create a pdf form image files.
Comment[de]=Erstellt ein PDF aus Bilddateien.
Comment[fr]=Crée un PDF à partir de fichiers image.
Comment[it]=Crea un PDF da file immagine.
Comment[pt]=Criar um PDF a partir de arquivos de imagem.
Comment[ru]=Создание PDF из файлов изображений.
Comment[zh]=从图像文件创建PDF。
Comment[ja]=画像ファイルからPDFを作成します。
Comment[ar]=إنشاء ملف PDF من ملفات الصور.
Exec=convert %F %P/%e-out.pdf 
Mimetypes=image/*;
Selection=notnone
Icon-Name=x-office-document
Active=true
Dependencies=convert;
schorschii commented 1 month ago

Please open a pull request to add your new action into the repo. Issues are only for reporting bugs or feature requests for existing actions.