Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
balloon-tx-monolith
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stephen D
balloon-tx-monolith
Commits
367cc9e1
Commit
367cc9e1
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
better image resizing logic
parent
6108b2dd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/img.rs
+33
-3
33 additions, 3 deletions
src/img.rs
with
33 additions
and
3 deletions
src/img.rs
+
33
−
3
View file @
367cc9e1
use
image
::{
imageops
::
FilterType
,
io
::
Reader
as
ImageReader
,
ImageOutputFormat
};
use
image
::{
imageops
::
FilterType
,
io
::
Reader
as
ImageReader
,
ImageOutputFormat
};
use
std
::{
fs
,
io
::
Cursor
,
path
::
PathBuf
,
sync
::
mpsc
::
Receiver
};
use
std
::{
cmp
::
max
,
fs
,
io
::
Cursor
,
path
::
PathBuf
,
sync
::
mpsc
::
Receiver
};
const
IMG_DIM
:
u32
=
1024
;
const
IMG_DIM
:
u32
=
1024
;
const
IMG_MAX_SIZE
:
u32
=
2048
;
const
IMG_MAX_SIZE
:
u32
=
2048
;
...
@@ -20,8 +20,13 @@ impl ImgInfo {
...
@@ -20,8 +20,13 @@ impl ImgInfo {
// want a imagine that's 512 on one side
// want a imagine that's 512 on one side
// resize so that the larger dimension is 512
// resize so that the larger dimension is 512
// TODO make this better. needs to be smaller than IMG_DIM but still % 16 on both sides
let
(
mut
w
,
mut
h
)
=
resize_dimensions
(
img
.width
(),
img
.height
(),
IMG_DIM
,
IMG_DIM
,
false
);
let
img
=
img
.resize
(
IMG_DIM
,
IMG_DIM
,
FilterType
::
Triangle
);
// make both dimensions divisible by 16 (SSDV requirement)
w
-=
w
%
16
;
h
-=
h
%
16
;
let
img
=
img
.resize_exact
(
w
,
h
,
FilterType
::
Triangle
);
let
mut
bytes
=
vec!
[];
let
mut
bytes
=
vec!
[];
...
@@ -210,3 +215,28 @@ impl ImgManager {
...
@@ -210,3 +215,28 @@ impl ImgManager {
Ok
(())
Ok
(())
}
}
}
}
// shamelessly stolen from the image crate
fn
resize_dimensions
(
width
:
u32
,
height
:
u32
,
nwidth
:
u32
,
nheight
:
u32
,
fill
:
bool
)
->
(
u32
,
u32
)
{
let
wratio
=
nwidth
as
f64
/
width
as
f64
;
let
hratio
=
nheight
as
f64
/
height
as
f64
;
let
ratio
=
if
fill
{
f64
::
max
(
wratio
,
hratio
)
}
else
{
f64
::
min
(
wratio
,
hratio
)
};
let
nw
=
max
((
width
as
f64
*
ratio
)
.round
()
as
u64
,
1
);
let
nh
=
max
((
height
as
f64
*
ratio
)
.round
()
as
u64
,
1
);
if
nw
>
u64
::
from
(
u32
::
MAX
)
{
let
ratio
=
u32
::
MAX
as
f64
/
width
as
f64
;
(
u32
::
MAX
,
max
((
height
as
f64
*
ratio
)
.round
()
as
u32
,
1
))
}
else
if
nh
>
u64
::
from
(
u32
::
MAX
)
{
let
ratio
=
u32
::
MAX
as
f64
/
height
as
f64
;
(
max
((
width
as
f64
*
ratio
)
.round
()
as
u32
,
1
),
u32
::
MAX
)
}
else
{
(
nw
as
u32
,
nh
as
u32
)
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment