C4illin / ConvertX

💾 Self-hosted online file converter. Supports 1000+ formats ⚙️
GNU Affero General Public License v3.0
1.87k stars 65 forks source link

[Feature Request] Merge multiple jpegs into pdf #249

Open GeorgeFkd opened 1 month ago

GeorgeFkd commented 1 month ago

It would be nice if convertx could merge multiple jpegs into a single pdf.

If this is a desired feature and fits within the vision and the architecture of the project i can work on it.

C4illin commented 1 month ago

Yes it is definitely a desired feature! Would unfortunately be a bit hard to do since the converters process all files individually by default, so some special action is needed

GeorgeFkd commented 1 month ago

Would it be better to create a second page called MergerX or should i just add a dropdown in the main page and have an option for merging files?

C4illin commented 1 month ago

I think the simplest would be to create a file format like *.merged.pdf and do special logic for it

C4illin commented 1 month ago

For pdf workflows in general I think it is better to use something like https://github.com/Stirling-Tools/Stirling-PDF

GeorgeFkd commented 1 month ago

It seems like pdf in general is a format that requires more specialised tooling and Stirling seems like it is one. Thank you for the recommendation.

GeorgeFkd commented 1 month ago

I think the simplest would be to create a file format like *.merged.pdf and do special logic for it

If this is is a one-off feature yes, if merging is something that is desired for more formats then some more work is required.