fix: enlarge shirt print area for more realistic sizing
Design box expanded from 370x370 to 500x450 and repositioned higher on the chest for typical t-shirt print proportions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
eda9a0df23
commit
a794f4732a
|
|
@ -23,7 +23,7 @@ settings = get_settings()
|
||||||
MOCKUP_TEMPLATES = {
|
MOCKUP_TEMPLATES = {
|
||||||
"shirt": {
|
"shirt": {
|
||||||
"template": "shirt-template.png",
|
"template": "shirt-template.png",
|
||||||
"design_box": (330, 310, 370, 370), # x, y, w, h — chest area on black tee
|
"design_box": (262, 230, 500, 450), # x, y, w, h — chest area on black tee
|
||||||
"blend": "screen", # screen blend for light designs on dark fabric
|
"blend": "screen", # screen blend for light designs on dark fabric
|
||||||
},
|
},
|
||||||
"sticker": {
|
"sticker": {
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ export interface MockupConfig {
|
||||||
export const MOCKUP_CONFIGS: MockupConfig[] = [
|
export const MOCKUP_CONFIGS: MockupConfig[] = [
|
||||||
{
|
{
|
||||||
template: "/mockups/shirt-template.png",
|
template: "/mockups/shirt-template.png",
|
||||||
designArea: { x: 330, y: 310, width: 370, height: 370 },
|
designArea: { x: 262, y: 230, width: 500, height: 450 },
|
||||||
label: "T-Shirt",
|
label: "T-Shirt",
|
||||||
productType: "shirt",
|
productType: "shirt",
|
||||||
price: 29.99,
|
price: 29.99,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue