Remove 0.75x downscaling of SVG icons #7118
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#7118
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "icons"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR removes the 0.75x downscaling of the SVG icons of POI in the current SVG→PNG workflow. This will simplify work for icon designers as they will be able to use a 1px grid to design the icons that will match the final pixel grid of the icons in the app.
I have modified all the icons to take into account the removal of this resize, so they look the same size in the app. However, current icons will have to be tweaked to take advantage of this change and make them match the grid. That is, unless they were designed already with the previous 1pt=0.75px conversion in mind. In that case they will match the new grid just fine.
@ -88,10 +93,10 @@ void SkinGenerator::ProcessSymbols(std::string const & svgDataDir,
QString fullFileName = QString(dir.absolutePath()) + "/" + fileName;
if (m_svgRenderer.load(fullFileName))
{
Can we clarify here where the 18 constant comes from?
Is it something connected with m_svgRenderer.defaultSize (a factor of 18)?
Should we still keep this transformation when we adjusted all the svg dimensions (in later commits)?
Did anyone test the last version in an app build?
@ -88,10 +93,10 @@ void SkinGenerator::ProcessSymbols(std::string const & svgDataDir,
QString fullFileName = QString(dir.absolutePath()) + "/" + fileName;
if (m_svgRenderer.load(fullFileName))
{
I don't understand it too and it'll be great to clarify this logic.
Not necessary in this PR.
(I wanted to go through the code and learn it myself, but don't have time now)
@ -88,10 +93,10 @@ void SkinGenerator::ProcessSymbols(std::string const & svgDataDir,
QString fullFileName = QString(dir.absolutePath()) + "/" + fileName;
if (m_svgRenderer.load(fullFileName))
{
As far as I know this is how this code works:
m_svgRenderer.defaultSize()
is the size of the SVG file (After the resize in this PR generally the -m files are 18x18 and the -s files are 12x12 ─ previously -m files were 24x24 and -s files were 16x16)symbolSize
is the size of the icons in the PNG skins that we want to generate and they are defined in the script generate_symbols.sh: 18 (mdpi), 27 (hdpi), 36 (xhdpi)...18.0
comes from the fact that the icons that should be represented as 18x18 in mdpi are also saved as 18x18 SVG files. Previously the constant24.0
came from the fact that the icons that should be represented as 18x18 in mdpi were saved as 24x24 SVG files.@ -88,10 +93,10 @@ void SkinGenerator::ProcessSymbols(std::string const & svgDataDir,
QString fullFileName = QString(dir.absolutePath()) + "/" + fileName;
if (m_svgRenderer.load(fullFileName))
{
Many thanks! Could you please convert this knowledge into the code comments?
@ -88,10 +93,10 @@ void SkinGenerator::ProcessSymbols(std::string const & svgDataDir,
QString fullFileName = QString(dir.absolutePath()) + "/" + fileName;
if (m_svgRenderer.load(fullFileName))
{
Added comments