Skip to main content
Proxy Basics

How to Make Magic: The Gathering Proxies: The Ultimate 2026 Guide

8 min read

How to Make Magic: The Gathering Proxies

Introduction

Creating "Magic: The Gathering" (MTG) proxies is a practice as old as the game itself, but the technology driving it has evolved significantly. In 2025, a proxy is no longer just a sharpie-written basic land; it is a high-fidelity replica designed for casual play, cube drafts, and commander nights. As a web scraping and technical expert, I will guide you through the most advanced methods to create professional-grade proxies, ranging from simple digital manipulation to automated image processing.

Part 1: Understanding the Legal and Ethical Framework

Before diving into the technical "how," it is vital to understand the "where" and "if."

The Legality of Proxies

  • Casual Play: In almost all casual settings (Commander nights with friends, Cube drafts), proxies are widely accepted to allow players to test powerful cards without spending thousands of dollars.
  • Sanctioned Events: Proxies are strictly banned in tournaments sanctioned by the DCI or Wizards of the Coast. Using printed proxies at a Friday Night Magic (FNM) or a Grand Prix can lead to disqualification.
  • Intellectual Property: Selling mass-produced proxies is a violation of copyright. Creating them for personal use exists in a gray area, but selling them on platforms like eBay or AliExpress often leads to DMCA takedowns.
  • Types of Proxies

    1. The "Sharpie" Method: Writing the card name on a basic land. Lowest quality, 100% tournament legal in casual play if the opponent agrees. 2. The "Sticker/Foil" Method: Printing art and adhering it to the front of a bulk card. 3. The "High-End" Custom: Professional printing on card stock with cutting and finishing.

    ---

    Part 2: Digital Asset Acquisition and Processing

    The secret to a perfect proxy lies in the data. You cannot print a low-resolution JPEG from a 2005 website and expect it to look good next to a genuine *Mana Crypt* or *Jeweled Lotus*.

    Step 1: Sourcing High-Resolution Art

    You need images scanned at 300 DPI (Dots Per Inch) or higher.

  • Official Sources: Wizards of the Coast releases high-quality art on their site, but usually without the card frame.
  • Scanning Communities: There are dedicated communities and repositories where users scan physical cards at high resolutions. Look for "raw HQ scans."
  • APIs and Scraping: As a technical expert, you can scrape metadata, but relying on dedicated art repositories is safer and more efficient for image files.
  • Step 2: Automated Image Processing with Python

    To ensure your proxies look uniform, you should automate the resizing and cropping process. Manually editing 100 images for a Commander deck is inefficient. Here is a Python script to automate the preparation of your card images.

    Prerequisites:

  • Python 3.x installed
  • Pillow library (pip install Pillow)
  • The Script:

    import os
    

    from PIL import Image

    def process_proxy_images(input_folder, output_folder, target_size=(822, 1122)): """ Resizes and crops MTG card images to standard dimensions. Standard MTG card size is roughly 63mm x 88mm. At 300 DPI, this translates to approximately 744 x 1038 pixels. However, high-quality print templates often use 822x1122 to include bleed.

    Args: input_folder (str): Path to folder containing raw images. output_folder (str): Path to save processed images. target_size (tuple): Target dimensions in pixels (width, height). """

    if not os.path.exists(output_folder): os.makedirs(output_folder)

    for filename in os.listdir(input_folder): if filename.endswith(('.jpg', '.jpeg', '.png')): try: img_path = os.path.join(input_folder, filename) img = Image.open(img_path)

    # Calculate aspect ratio to maintain quality # We want a center crop to focus on the art/text width, height = img.size target_ratio = target_size[0] / target_size[1] img_ratio = width / height

    if img_ratio > target_ratio: # Image is too wide new_width = int(height * target_ratio) left = (width - new_width) / 2 top = 0 right = (width + new_width) / 2 bottom = height else: # Image is too tall new_height = int(width / target_ratio) left = 0 top = (height - new_height) / 2 right = width bottom = (height + new_height) / 2

    img = img.crop((left, top, right, bottom))

    # Resize to target img = img.resize(target_size, Image.Resampling.LANCZOS)

    # Save output_path = os.path.join(output_folder, filename) img.save(output_path, quality=95) print(f"Processed: {filename}")

    except Exception as e: print(f"Error processing {filename}: {e} )

    Usage Example

    process_proxy_images('raw_scans/', 'printing_ready/')

    This script ensures that every card in your deck has consistent dimensions and resolution before you even touch a printer.

    ---

    Part 3: The Physical Manufacturing Process

    Once you have your digital assets processed, the physical creation determines the "feel" of the proxy.

    Method A: The "Alter Sleeve" (Best for Beginners)

    This method involves gluing a printout over a real card. It preserves the feel but adds thickness.

    1. Base Cards: Use bulk basic lands or cheap cards you don't care about. 2. Adhesive: Use 3M Spray Mount or a glue stick. Avoid rubber cement (it wrinkles) or superglue (it lumps). 3. Technique: * Print your art on standard paper. * Spray the card, not the paper. * Apply the paper starting from one edge to avoid bubbles. * Sleeve the card in a perfect-fit sleeve immediately to hide the edges.

    Method B: The Card Stock Print (Best for Authenticity)

    This involves printing directly on material that mimics a Magic card.

    Paper Specifications: Standard paper is 80gsm. Magic cards are roughly 330gsm (grams per square meter). You need cardstock specifically labeled as "playing card stock" or "300+ GSM cover stock."

    Some hobbyists use "German Cardstock" or blanks made specifically for proxying.

    Printer Settings:

  • Color: Set to "Photo" or "Best Quality."
  • Paper Type: Select "Cardstock" or "Heavy Paper" in your printer driver to prevent smudging.
  • Resolution: Ensure the source images are CMYK for print, though high-quality RGB often works well enough for home inkjets.

Comparison Table: Paper vs. Card Stock

| Feature | Standard Photo Paper | 330gsm Card Stock | Real MTG Card (Blue Core) | | :--- | :--- | :--- | :--- | | Durability | Medium (Folds easily) | High | Very High | | Feel (Shuffle) | Sticky / Flimsy | Crisp / Solid | Professional (Smooth) | | Opacity | Semi-transparent (See-through) | High (Solid core) | High (Opaque core) | | Cost | Low | High | N/A | | Recommended | No | Yes, for playtesting | N/A |

Part 4: Advanced Finishing Techniques

To make your proxies indistinguishable from real cards in a sleeve, you must address the "Blue Core" issue. Real cards have a blue layer in the middle to prevent transparency. Home-printed cards are often see-through.

The Solution: 1. Double-Sided Printing: Print the card back on the reverse. While this doesn't solve transparency completely, it helps. 2. The "Sandwich" Method: Glue two pieces of cardstock together with a dark sheet of paper in the middle. This creates an opaque core. 3. Texturing: Real cards have a specific texture. If your printer is too glossy, spray a *matte* varnish over the card. This reduces glare and gives it a手感 similar to real cards.

Where to Print Magic: The Gathering Proxies

If you lack a high-end laser printer, external services are often better.

1. Office Supply Stores: Staples or FedEx Office often have restrictions on printing copyrighted material. Avoid uploading explicit MTG art files to their public servers. 2. Online Print-on-Demand: Use services that cater to board game creators. Look for "S30" or "S33" poker card sizing. 3. Specialized Proxy Services: (Use with caution) Some websites sell "custom cards." These use actual card stock and often look too good to be true. Be aware of the distinction between "playtest cards" (blank front, text only) and "counterfeits" (exact replicas).

Common Pitfalls & Troubleshooting

1. The "Oversized" Card

If your card doesn't fit in the sleeve, you are likely using US Letter paper size margins without checking your printer's "Non-Printable Area." Check the dimensions of the specific brand of sleeve you are using (e.g., Ultimate Guard, Dragon Shield) as they vary slightly.

2. Color Mismatches

Inkjet printers often oversaturate reds and undersaturate blues. You may need to adjust the color curves in Photoshop or GIMP before printing.

3. Curling

Heavy cardstock tends to curl as it dries. To fix this, place the printed cards under a heavy stack of books overnight immediately after printing.

Conclusion

Creating high-quality Magic: The Gathering proxies is a blend of data science and graphic arts. By utilizing Python to preprocess your images and understanding the physical properties of card stock (GSM and core opacity), you can create playtest decks that feel professional.

Always respect the intellectual property of Wizards of the Coast and use these methods for personal, casual play to enhance your enjoyment of the game without devaluing the secondary market.

Share: