Home › Forums › Problems and solutions in GDL › Graphical UI and parameters list › Multipage Tiff files handling
Tagged: LP_XMLConverter svg tif tiff
- This topic has 3 replies, 2 voices, and was last updated 5 years, 8 months ago by
Piotr Dobrowolski.
-
AuthorPosts
-
-
July 15, 2019 at 13:46 #4846
Piotr Dobrowolski
ParticipantTo get the UI scaled properly we need multipage tiff files to allow “proper” scaling of the pictorial UI elements..
Searching through the AC libraries the multipage tiffs contain 3 pages where 0 is not scaled – and the others are 200% and 300%.
Those 3 work quite well – but did anyone try with different scaling/more pages? (and is it giving anything when non-obvious scales are used)Another thing – what tools do You use for creating the multipage tiffs? Currently I use Affinity Designer ->export 3 scales and then combine them with imagemagick
I think it could be done more automatical way.. anyone has something good for that?Piotr
-
July 16, 2019 at 08:18 #4847
Péter Baksa
KeymasterHi,
If you create the images in svg format, put them in a folder,
LP_XMLConverter convertlibrary -excludesvg <folder> <tifffolder>
converts them.
There is one limitation: it converts text with a default font, and gives a warning. Explode text in the svg editor.Péter Baksa
Library Platform, Software Engineer
GRAPHISOFT SE -
July 17, 2019 at 18:27 #4853
Piotr Dobrowolski
ParticipantThanks!
I searched for that in LP_XML tool manual and could not find…:)BTW If searching reliable tool for splitting and merging tiffs then there are few commandline image magick goods for that:
I added for right click over tiff file(winddows):
“C:\Program Files\_ImageMagick_folder_\magick.exe” convert “%1” -set filename:f “%%[t]_%%[fx:t+1]” +adjoin “%%[filename:f].tif”for joining files put in the folder I made right click option to join tiffs from there into one outside that directory
(unfortunately I could not figure it out to do without bat file creation)
so right click goes to: “_path_to_custom_file_\joinTiff.bat” “%1”and this bat file contains:
“C:\Program Files\_ImageMagick_folder_\magick.exe” convert %1\*.tiff %1.tiffI needed also this option for pure bitmaps…and making one overscaled jpg does not work if there are elemenets that need to be crisp ;(
Piotr
-
July 20, 2019 at 19:45 #4878
Piotr Dobrowolski
ParticipantI made the same right click entry for the svg 2 tiff
it points to a bat file containing:
“C:\Program Files\GRAPHISOFT\LibDev Toolkit 22 (3013)\Tool\WIN\LP_XMLConverter” convertlibrary -excludesvg %1 %1_tif
it works on right click on folder and creates a folder (at the same level) with the same name +”_tif” containing the tiffs made out of svgs
-
-
AuthorPosts
- The forum ‘Graphical UI and parameters list’ is closed to new topics and replies.